gpt4 book ai didi

javascript - 无法通过 postman 发送放置请求

转载 作者:行者123 更新时间:2023-11-30 15:43:42 24 4
gpt4 key购买 nike

我发送的是

http://localhost:3000/accounts?user_id=62139fbf-ce6a-4827-8fe8-f1c3197bff82
// params
user_id 62139fbf-ce6a-4827-8fe8-f1c3197bff82

我在account.js里面node Js的Api是

router.route('/:user_id').put(function(req, res) {
console.log("hello")

当我将路线更改为以下内容时它会起作用(即我删除了参数 user_id 以及 postman 。

router.route('/').put(function(req, res) {
console.log("efwe")

所以问题在于向参数发送任何帮助。

最佳答案

我相信你的网址应该是这样的 -

http://localhost:3000/accounts/62139fbf-ce6a-4827-8fe8-f1c3197bff82

对于路由 - router.route('/accounts/:user_id').

对于查询参数,您需要执行类似这样的操作 - http://localhost:3000/accounts?user_id=62139fbf-ce6a-4827-8fe8-f1c3197bff82

router.route("/accounts",function(req,res){
var id = req.query.user_id; // Check syntax for framework you are using
});

关于javascript - 无法通过 postman 发送放置请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40418877/

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