最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to create an patch request with axios - Stack Overflow

programmeradmin0浏览0评论
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
Add a ment  | 

1 Answer 1

Reset to default 9

Axios 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
        })
发布评论

评论列表(0)

  1. 暂无评论