ノート
- これは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
ません。
問題は何だと思いますか?