gpt4 book ai didi

reactjs - 模拟 Postman 请求进入 Axios?

转载 作者:行者123 更新时间:2023-12-03 18:14:19 26 4
gpt4 key购买 nike

enter image description here

enter image description here

我正在尝试构建我的 axios能够模仿 postman 请求但失败了。请帮忙看看

const ax = axios.create({
timeout: 30000,
headers: {
'content-type': 'application/x-www-form-urlencoded'
}
});

// Attempt register operation
ax.post('https://url/5bc9ff9628d79b6d274165da/update.json', {
body: JSON.stringify({
json: JSON.stringify({ "stat": "Delivered" })
})
})
.then(({ data }) => {
console.log('DEBUG::success!!! data::', data);
})
.catch((err) => {
console.log('DEBUG::err', err);
});

最佳答案

您可以使用 Postman 中的代码生成功能。

enter image description here
单击代码(在保存按钮下方)> 搜索“Axios”> NodeJS - Axios

postman code gen supports axios now

Postman 代码生成文档:https://learning.getpostman.com/docs/postman/sending_api_requests/generate_code_snippets/

关于reactjs - 模拟 Postman 请求进入 Axios?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53667206/

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