jQuery 1.7.2 とajax
関数に問題があります。以下のコードを呼び出すと、Firefox Firebug コンソールで次のエラーが発生します。
NS_ERROR_XPC_NOT_ENOUGH_ARGS: 十分な引数がありません [nsIDOMLocation.replace]
var weights= new Object();
// weight is then manipulated in here
$.ajax(
{
url: '/admin/countries/index.php',
data: ({action: 'sort', cid: cid, weights: weights}),
dataType: 'json',
success: function(data){
alert('suck-sess');
// do stuff in here
},
error: function (request, status, error) {
alert(request.responseText);
}
}
)
$_REQUEST["action"]
PHPでダンプすると、index.php
明らかに「並べ替え」である必要があるときに、空白になっているため、リクエストが正常に行われているかどうかさえわかりません。
コードを実行すると、成功またはエラーのアラートが表示されないため、エラーの原因がわかりません。