有问题的网站是http://echojson.com/
使用 curl 你可以这样做:
curl --globoff -i -H "Accept: application/json" -X DELETE http://echojson.com/_history
清除历史记录。
$.ajax({
url: 'http://echojson.com/_history',
type: 'DELETE',
success: function(result) {
console.log(result);
}
});
给我
OPTIONS http://echojson.com/_history [HTTP/1.1 404 Not Found 110ms]
我能做些什么?