gpt4 book ai didi

javascript - AngularJS 使用 $http.post() 将模型发布到 json 文件

转载 作者:可可西里 更新时间:2023-11-01 16:33:24 26 4
gpt4 key购买 nike

我是 AngularJS 的新手。我想将注册数据发布到 json 文件中。发布请求工作正常,但数据未写入文件。我无法理解那个立场。我的帖子请求代码有问题吗?我该如何解决?谢谢!

 var regModel = {
FirstName: 'Someone',
LastName: 'Somebody',
Address: 'somewhere',
Email: 'something@gmail.com'
};

$scope.insertUser = function () {
$http.post('../DB/users.json', regModel).
success(function(data, status, headers, config) {
// this callback will be called asynchronously
// when the response is available
}).
error(function(data, status, headers, config) {
// called asynchronously if an error occurs
// or server returns response with an error status.
});
}

最佳答案

使用您当前的设置,您的发布请求将在您的请求内容中包含您的 regModel 对象。在服务器端,您可以获取正文或内容,然后将其写入文件。

关于javascript - AngularJS 使用 $http.post() 将模型发布到 json 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27417705/

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