<form ng-submit="doRegister()">
<div class="control-group">
<label for="email">E-Mail Address</label>
<input type="email" id="email" name="email" ng-model="user.email" autofocus>
</div>
<div class="control-group">
<label for="password">Password</label>
<input type="password" id="password" name="user.password" ng-model="password">
</div>
<div class="control-group">
<label for="password_confirmation">Confirm Password</label>
<input type="password" id="password_confirmation" name="password_confirmation" ng-model="user.password_confirmation">
</div>
<input type="submit">
</form>
如何通过register
将表单提交至POST
?从技术上讲,我不知道data
可以放在哪里。
function registerCtrl ($scope, $http) {
document.title = 'Register';
$scope.doRegister = function(){
$http.post('/register', data).
success(function(data, status, headers, config) {
console.log(data);
}).
error(function(data, status, headers, config) {
angular.element('.errors').html(data.errors.join('<br>')).slideDown();
});
};
}
编辑:进度:
function registerCtrl ($scope, $http) {
document.title = 'Register';
$scope.user = {};
$scope.doRegister = function(){
$http.post('/register', $scope.user);
};
}
但发送到服务器的请求是php中的空数组:
Array()
答案 0 :(得分:1)
您已在表单中绑定了一个属性。 您可以使用它们定义数据。
例如,对于电子邮件字段:
var data = {};
data.email = $scope.email;
或者您甚至可以在控制器中定义$scope.data = {}
,
发布。
这似乎是人们用$ http.post()发送的问题之一 表格数据。解决方案在以下Q&amp; A中给出。
AngularJS - Any way for $http.post to send request parameters instead of JSON?
答案 1 :(得分:1)
您需要声明变量并更改headers
,如下所示:
function registerCtrl ($scope, $http) {
document.title = 'Register';
$scope.user = {
email: '',
password: ''
};
$scope.doRegister = function(){
$http({
url: '/register',
data: $scope.user,
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
transformRequest: function(obj) {
var str = [];
for(var p in obj)
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
return str.join("&");
},
});
};
}
你需要
答案 2 :(得分:0)
AngularJS&#39; post方法将数据作为Request Payload发送。
只需使用:
$json = json_decode(file_get_contents("php://input"));
您可以使用
访问php中的值$email = $json->email;
$password = $json->password;
$password_confirmation = $json->password_confirmation;
答案 3 :(得分:-2)
<form id="Register" action="/register">
<div class="control-group">
<label for="email">E-Mail Address</label>
<input type="email" id="email" name="email" ng-model="email" autofocus>
</div>
<div class="control-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" ng-model="password">
</div>
<div class="control-group">
<label for="password_confirmation">Confirm Password</label>
<input type="password" id="password_confirmation" name="password_confirmation" ng-model="password_confirmation">
</div>
<input type="submit">
</form>
调用ajax函数。
$.ajax({
url: form.prop('action'),
type: 'POST',
data: form.serialize(),
dataType: 'json',
async: false,
success: function (result) {
}
}); // ajax post end
var form = $("#Register");
数据传递form.serialize()
非常容易从服务器端传递数据。