gpt4 book ai didi

json - Angular JS中json格式的Restangular POST表单数据

转载 作者:行者123 更新时间:2023-12-03 12:51:29 24 4
gpt4 key购买 nike

我是 Angular JS 的新手,我需要使用 json 格式的表单数据的 restangular POST。另外我是POST功能的新手,谁能告诉我该怎么做?

我的索引页:

<form ng-controller="registerCtrl">
<input placeholder="Username" type="email" name="username" ng-model="user.email" />
<input placeholder="Password" type="password" name="password" ng-model="user.password"/>
<input placeholder="Confirm Password" type="password" name="confirmpassword" ng-model="user.confirmPassword" />
<button class="btn btn-info" ng-click="registerUser()" type="submit">Login</button>
</form>

Controller
var myApp=angular.module('myApp',['restangular']);
function registerCtrl($scope, Restangular){
$scope.user = {};
$scope.registerUser=function(){
$scope.people = Restangular.all('data.json/:user').post($scope.user);
}
}

在这里我应该在哪里将输入值作为 Json 格式传递.....如果代码有误,请纠正我.....

最佳答案

Restangular帖子应该针对集合而不是元素。

在你的情况下 POST 应该是这样的;

$scope.user = {email :"", password: "", confpass: ""};

然后发出 POST 请求,例如;
Restangular.all('data.json/:user').post("users", $scope.user);

引用;

https://github.com/mgonto/restangular#element-methods

关于json - Angular JS中json格式的Restangular POST表单数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18585010/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com