gpt4 book ai didi

javascript - 如何从 Angular $http post 请求中获取 json 字符串

转载 作者:行者123 更新时间:2023-11-30 16:38:27 24 4
gpt4 key购买 nike

我正在发送此 POST,我想在发送之前查看请求中发送的字符串。

这是 Plunker

$http.post('/someUrl', {msg:'hello word!'}).
then(function(response) {
// this callback will be called asynchronously
// when the response is available
}, function(response) {
// called asynchronously if an error occurs
// or server returns response with an error status.
});

我想我想做的是查看发送到服务器的 JSON 字符串。

最佳答案

如果您使用这样的配置选项访问 url

var config = {
headers: { 'Content-type': 'application/json' },
'dataType': 'json'
};
var data = {
name: 'intekhab',
age:26,
};
$http.post('/admin/header', data, config).then(function(response){
console.log(response);
});

然后你可以看到发送的数据。打开浏览器 console 并点击 network 然后在 networkclick 你的 url 你所点击的现在看看 标题选项卡下的 Request Payload您的数据将在那里显示您已发送到服务器的内容。

如果你没有像这样使用配置选项

var data = {
name: 'intekhab',
age:26,
};
$http.post('/admin/header', data).then(function(response){
console.log(response);
});

然后执行与上面相同的操作,唯一不同的是您在 Request Payload 下看到的数据,现在您将在 Form Data 下看到相同的数据

enter image description here

enter image description here

关于javascript - 如何从 Angular $http post 请求中获取 json 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32367304/

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