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

axios.post('apiv1users',{ "edited_field": "email", "email":

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
        })

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743652312a4484786.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信