这是我的邮递员要求:
http/localhost:8080/sample-market/marketAPI/1234/product/publish?productOne=testing&productTwo=checking
[有人可以通过axios帮我发帖吗? productOne和productTwo是查询参数,1234是路径参数
我认为您应该先阅读DOC:
来自: https://www.npmjs.com/package/axios
首先下面的URL看起来像get方法:
http/localhost:8080/sample-market/marketAPI/1234/product/publish?productOne=testing&productTwo=checking
但是如果您仍然想使用POST,那么就可以了:
axios.post('http/localhost:8080/sample-market/marketAPI/1234/product/publish', {
productOne: 'testing',
productTwo: 'checking'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});