26

有没有办法为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)
    }
  });
}
4

1 回答 1

66

这不是您应该使用 AngularJS 访问表单数据的方式。表单中的数据应在范围内绑定。

所以使用一个对象,例如 $scope.formData,它将包含你所有的数据结构,然后你的每个表单元素都应该使用 ng-model 绑定到这个对象。

例如:

http://jsfiddle.net/rd13/AvGKj/13/

<form ng-controller="MyCtrl" ng-submit="submit()">
    <input type="text" name="name" ng-model="formData.name">
    <input type="text" name="address" ng-model="formData.address">
    <input type="submit" value="Submit Form">
</form>

function MyCtrl($scope) {
    $scope.formData = {};

    $scope.submit = function() {   
        console.log(this.formData);
    };
}

提交上述表单时,$scope.formData 将包含您的表单对象,然后可以在您的 AJAX 请求中传递该对象。例如:

Object {name: "stu", address: "england"} 

要回答您的问题,没有更好的方法可以使用 AngularJS 来“序列化”表单数据。

但是,您可以使用 jQuery:$element.serialize(),但如果您想正确使用 Angular,请使用上述方法。

于 2013-04-08T16:23:28.210 回答