admin管理员组文章数量:1340742
axios.post('/api/v1/users',
{ "edited_field": "email", "email": email },
{ headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': crsfToken }, }
).then((response) => {
// Code
}).catch((error) => {
// Code
})
I have this post method, but i want to create an patch method of this. i have seen some solutions where they post a form with an input value='patch' but since im not using a form i have no idea how it must be done.
Any help is wele :D
Thanks in advance!
axios.post('/api/v1/users',
{ "edited_field": "email", "email": email },
{ headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': crsfToken }, }
).then((response) => {
// Code
}).catch((error) => {
// Code
})
I have this post method, but i want to create an patch method of this. i have seen some solutions where they post a form with an input value='patch' but since im not using a form i have no idea how it must be done.
Any help is wele :D
Thanks in advance!
Share Improve this question asked Jan 31, 2022 at 20:28 henrikhannewijkhenrikhannewijk 771 gold badge1 silver badge15 bronze badges 1- 2 You can use the axios.patch(url[, data[, config]]) method referenced in the Axios documentation – Jan Commented Jan 31, 2022 at 20:31
1 Answer
Reset to default 9Axios has a built-in patch method. You can modify the code you currently have by replacing axios.post
with axios.patch
axios.patch('/api/v1/users',
{ "edited_field": "email", "email": email },
{ headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': crsfToken }, }
).then((response) => {
// Code
}).catch((error) => {
// Code
})
本文标签: javascriptHow to create an patch request with axiosStack Overflow
版权声明:本文标题:javascript - How to create an patch request with axios - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743652311a2516536.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论