有沒有一種方法來爲angularjs序列化函數?有沒有更有效的方式來使用angularjs序列化表單?
我的帖子看起來像現在這樣。
$scope.signup_submit = function() {
var formData = {
username: $scope.username,
full_name: $scope.full_name,
email: $scope.email,
password: $scope.password,
confirm_password: $scope.confirm_password
}
$http({
method: "POST",
url: '/signup',
data: formData,
}).success(function (data) {
if (data.status == 'success') {
alert('all okay');
} else {
alert(data.msg)
}
});
}
你試過了嗎:$ element.serialize()? – StuR 2013-04-08 10:51:20
是的,它返回undefined函數序列化 – 2013-04-08 10:53:45
我認爲他的意思是$(元素).serialize();你當然需要讓JQuery來實現這一點。 – ganaraj 2013-04-08 11:36:34