我是新手,想知道如何在我的react native项目中使用DELETE METHOD API。 我只知道方法“ GET”和“ POST”!
预先感谢
答案 0 :(得分:0)
Delete
的工作方式与GET
和POST
相同,请参见下面的示例,您可以根据需要轻松进行修改。祝你好运:)
function deleteToken(token) {
const formData = new FormData();
formData.append('token', token);
return fetch('YOUR_URL', {
method: 'DELETE',
body: formData
})
.then(response => response.json())
}
deleteToken(token)
.then((json) => {
// handle success
})
.catch(error => error);