笔记
- 这是 jQuery 1.4.4
- 这不是jsonp 请求。只是我域中的香草 json。
我的请求
$autocomplete_xhr = $.ajax({
url: '/customers/filter.json',
contentType: "application/json",
data: { name: request.term },
dataType: 'json',
beforeSend: function(xhr) {
console.log('Inside beforeSend');
console.log(xhr);
},
当我发送 AJAX 请求时,console.log
不会触发。
你认为问题是什么?