这是我的代码
var url = '/deltopics?_id=' + item._id;
fetch(url, {
method: 'delete',
credentials: 'include'
}).then(function(res) {
return res.json();
}).then(function(data) {
that.refresh(0, author);
ui.tips('delete success')
}).catch(function(err) {
console.log(err)
})
但是不起作用?
任何人都可以帮助我吗?