我正在尝试使用Request JS POST到服务器。我遇到了部分路径的问题。
return await request.get({
method: 'POST',
uri: `${domain}/info/test/`,
body: bodyAsString,
headers: {
Authorization: `bearer ${token}`,
},
}).pipe(res);
这个api有两种方法可以点击它:/info/test
作为POST,/info/test/:GUID
作为GET。出于某种原因,当我使用Request命中它时,它抱怨'test'不是一个有效的GUID,就像我在路径上的一个级别太低。我可以在Postman中点击它。
答案 0 :(得分:3)
你应该使用request.post而不是request.get