curl -X DELETE https://www.filestackapi.com/api/file/**HANDLE**?key=APIKEY
我想使用上面的curl调用从filestack存储中删除文件。如何使用jQuery或SuperAgent在ajax调用中使用它?
答案 0 :(得分:2)
使用jQuery:
$.ajax({
url: 'https://www.filestackapi.com/api/file/HANDLE?key=APIKEY',
type: 'DELETE',
success: function(result) {
// Do something with the result
}
});
与superagent
request
.del('https://www.filestackapi.com/api/file/HANDLE?key=APIKEY')
.end(function(err, res){
});