如何使用fetch函数删除数据?

时间:2016-03-22 06:27:34

标签: javascript fetch

这是我的代码

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

但是不起作用?

任何人都可以帮助我吗?

0 个答案:

没有答案