我想制作一个身份验证表单,但我没有收到我的数据。 我在使用crud操作时遇到问题我正在尝试使这种身份验证工作,但我收到了错误的数据!
这是我的表格
<form role="form" ng-submit="ajaxPost()">
<div class="form-group">
<input type="text" class="form-control input" ng-model="user.email" placeholder="Login" />
</div>
<div class="form-group">
<input type="password" class="form-control input" ng-model="user.pass" placeholder="Mot de passe"/>
</div>
<div class="checkbox input">
<label>
<input type="checkbox" ng-model="user.remember"> Se souvenir de moi
</label>
</div>
<button type="submit" class="btn btn-default" style="margin-left:50%; width:10%;" >Connexion</button>
<div class="form-group">
<label style="margin-left:49%;"><a href="">Mot de passe oublié ?</a></label>
</div>
my controller.js
function LoginController($scope,$http) {
$scope.ajaxPost= function(){
var postData = {};
postData.Login = $scope.user.email;
postData.Pass = $scope.user.pass;
alert(postData.Login + " " + postData.Pass);
$http({
url: "services/user.php",
method: "POST",
data: "login="+postData.Login+"&password="+postData.Pass,
}).success(function(data) {
alert(data);
}).error(function(data) {
alert("erreur");
});
}
}
这是发送数据的方式吗?
这是控制台日志
<br />
(!)注意:未定义的索引:在 10 的C:\ wamp \ www \ Anypli-Web \ services \ user.php中登录
调用堆栈
#TimeMemoryFunctionLocation
10.0005258216 {main}().. \ user.php : 0
(!)注意:未定义的索引:在 11 上的C:\ wamp \ www \ Anypli-Web \ services \ user.php中的密码
调用堆栈
#TimeMemoryFunctionLocation
10.0005258216 {main}().. \ user.php : 0
{“items”:null}