Heim >Backend-Entwicklung >PHP-Tutorial >AngularJS-Post-Einreichung Chinesischer verstümmelter Code?
html:
<code><div ng-controller="login_input"> <form ng-submit="check_login()"> <div ><a>用户名:</a></div><div ><input type="text" required ng-model="login.uname"/></div> <div ><a>密码:</a></div><div ><input type="password" required ng-model="login.upassword"/></div> <div ><a>验证码:</a></div><div ><input type="number" min="0" required ng-model="login.chkcode"/><img src="img.php"/></div> {{login}} <button class="a_button" type="submit">登录</button> </form> </div> </body> <script type="text/javascript" src="js/angular.min.js"></script> <script> var app = angular.module('login', []); app.controller('login_input', function ($scope,$http) { $scope.check_login=function(){ var aa = { uname : $scope.login.uname, upassword:$scope.login.upassword, chkcode:$scope.login.chkcode } if($scope.login.uname&&$scope.login.upassword&&$scope.login.chkcode){ $http({ method: 'POST', url: 'login.php', data: aa, }) .success(function(response){ console.log(response); }) } } }); </script></code>
php:
<code><?php header('Content-type: text/html; charset=gb2312'); $params = json_decode(file_get_contents('php://input'), true); require("cfg.php"); global $dbh; $user_name= $params["uname"]; $user_password= $params["upassword"]; $user_chkcode= $params["chkcode"]; var_dump(is_register()); var_dump($user_name); function is_register() { global $dbh, $user_name, $user_password; $up = sha1($user_password); $sql = "select user from gggg"; $sth = $dbh->prepare($sql); $sth->bindParam(':username', $user_name); // $sth->bindParam(':pwd', $up); $sth->execute(); $rs = $sth->fetchAll(PDO::FETCH_ASSOC); return $rs; } ?> </code>
Der empfangene Benutzername ist verstümmelt. Müssen Sie beim Posten die Kopfzeilen festlegen? Wie es eingestellt werden sollte.
Aus verschiedenen Gründen ist es notwendig, die Kompatibilität mit früheren Systemen zu maximieren, daher wird gb2312 verwendet.
html:
<code><div ng-controller="login_input"> <form ng-submit="check_login()"> <div ><a>用户名:</a></div><div ><input type="text" required ng-model="login.uname"/></div> <div ><a>密码:</a></div><div ><input type="password" required ng-model="login.upassword"/></div> <div ><a>验证码:</a></div><div ><input type="number" min="0" required ng-model="login.chkcode"/><img src="img.php"/></div> {{login}} <button class="a_button" type="submit">登录</button> </form> </div> </body> <script type="text/javascript" src="js/angular.min.js"></script> <script> var app = angular.module('login', []); app.controller('login_input', function ($scope,$http) { $scope.check_login=function(){ var aa = { uname : $scope.login.uname, upassword:$scope.login.upassword, chkcode:$scope.login.chkcode } if($scope.login.uname&&$scope.login.upassword&&$scope.login.chkcode){ $http({ method: 'POST', url: 'login.php', data: aa, }) .success(function(response){ console.log(response); }) } } }); </script></code>
php:
<code><?php header('Content-type: text/html; charset=gb2312'); $params = json_decode(file_get_contents('php://input'), true); require("cfg.php"); global $dbh; $user_name= $params["uname"]; $user_password= $params["upassword"]; $user_chkcode= $params["chkcode"]; var_dump(is_register()); var_dump($user_name); function is_register() { global $dbh, $user_name, $user_password; $up = sha1($user_password); $sql = "select user from gggg"; $sth = $dbh->prepare($sql); $sth->bindParam(':username', $user_name); // $sth->bindParam(':pwd', $up); $sth->execute(); $rs = $sth->fetchAll(PDO::FETCH_ASSOC); return $rs; } ?> </code>
Der empfangene Benutzername ist verstümmelt. Müssen Sie beim Posten die Kopfzeilen festlegen? Wie es eingestellt werden sollte.
Aus verschiedenen Gründen ist es notwendig, die Kompatibilität mit früheren Systemen zu maximieren, daher wird gb2312 verwendet.
Können Sie die http-Informationen der Post-Anfrage posten?
Wenn es empfangen werden soll, verwenden Sie zuerst UTF-8, um es zu empfangen, und konvertieren Sie es dann auf dem Server in gb2312. Wenn Sie andere Dienste speichern oder mit ihnen interagieren möchten, verwenden Sie iconv()
Blogartikel bereitgestellt von @ Dawn Stars http://blog.csdn.net/vera_xue...
Ich habe das Problem mit dem folgenden Code in PHP gelöst:
$params = json_decode(file_get_contents('php://input'), true);
require("cfg.php");
global $dbh;
$user_name = $params["uname"];//utf-8
$user_name = iconv("UTF-8", "GB2312", $user_name);