我正在运行一个简单的脚本来清理我的环境。很长一段时间以来一直被困在一个看似微不足道的问题上,所以我使用了其他方法,但仍然想知道为什么这到底是行不通的。node-fetch GET 工作正常,但是当我使用 DELETE 时,没有任何内容被删除,并且承诺永远不会得到解决。
const fetch = require('node-fetch');
var headers = {
'Content-Type': 'application/json',
Authorization: `Bearer token-placeholder`
};
fetch(`https://test-api.com/api/entity/123456`, {
method: 'DELETE',
headers: headers
})
.then(res => res.json())
.then(res => {
console.log(res)
})