写个在delete请求中传参数
时间: 2023-06-06 22:08:37 浏览: 90
jQuery参数列表集合
的示例代码。
以下是一个在delete请求中传参数的示例代码:
```
const params = {
id: 1,
name: 'John'
};
fetch(`/api/users/${params.id}`, {
method: 'DELETE',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(params)
})
.then(response => {
console.log('Success:', response);
})
.catch(error => {
console.error('Error:', error);
});
```
在这个示例中,我们使用了fetch函数来发送delete请求。我们首先定义了一个包含id和name属性的params对象,然后将其作为请求体的内容进行传递。在请求头中,我们指定了请求的Content-Type为application/json。最后,我们在then和catch中处理请求成功和失败的情况。
阅读全文