在向 node.js 应用程序发出 DELETE 请求之前,是否需要设置任何配置?
我可以提出GET
,POST
或PUT
请求,但DELETE
请求不起作用。
DELETE http://localhost:8081/api/1.0/entry
从路由记录器产生undefined
,我正在使用 express 来注册路由。但看起来我什至无法解析 url / 动词。
这就是我调用它的方式:
rows.find('a.remove').on('click', function(){
$.ajax({
url: '/api/1.0/entry',
type: 'DELETE'
}).done(function(res){
var row = $(this).parentsUntil('tbody');
row.slideUp();
});
});
样本日志
GET / 200 18ms
GET /author/entry 200 10ms
GET /api/1.0/entry 200 2ms
GET /api/1.0/entry 200 1ms
GET /api/1.0/entry 200 1ms
undefined