Javascript:获取DELETE和PUT请求
作者:互联网
我用Fetch得到了GET和POST方法之外的东西.但我找不到任何好的DELETE和PUT示例.
所以,我问你.你能举一个带有fetch的DELETE和PUT方法的好例子吗?并解释一下.
解决方法:
这是一个fetch POST示例.你也可以为DELETE做同样的事情.
function createNewProfile(profile) {
const formData = new FormData();
formData.append('first_name', profile.firstName);
formData.append('last_name', profile.lastName);
formData.append('email', profile.email);
return fetch('http://example.com/api/v1/registration', {
method: 'POST',
body: formData
}).then(response => response.json())
}
createNewProfile(profile)
.then((json) => {
// handle success
})
.catch(error => error);
标签:javascript,reactjs,fetch,http-put,http-delete 来源: https://codeday.me/bug/20191001/1837588.html