POST Data > {post: '[["test",null,null,null,"test"]]'}
RETURN_CODE > 406
RETURN_MESSAGE > Not Acceptable! An appropriate representation of the requested resource could not be found on this server.
此错误是由Mod_Security生成的。
完整代码:
var xtest = [["test", null, null, null, "test"]];
var xtest1 = JSON.stringify(xtest);
$.ajax({
url: url,
data: {post: xtest1},
type: 'post',
success: function(result){
console.log(result);
}
});
那是一个错误还是我的代码是错误的?
注意:
-在我的本地计算机上正常工作
-在主机上显示406