我对如何从 jquery/ajax/json rpc 调用中检索我的数据服务器端感到头疼!
这是客户端:
$.ajax({
type: 'POST',
contentType: 'application/json; charset=utf-8',
url: 'http://wine-trip.net/php/ajax/setVinImage.php',
data: JSON.stringify({jsonrpc:'2.0',method:'add',params:[{'vigneronID':'14818','action':'deleteImage','vinID':'13','vinImageType':'Bouteille'}],id:"jsonrpc"}),
dataType:"json",
success:function(data){
if (typeof (data.error.message) === 'undefined') {
// Everything was OK
}
else{
alert(data.error.message);
}
},
error: function(req) {
alert("Networking problem");
}
});
这是服务器端的开始:
// HTTP headers for no cache etc
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
error_log("POST ".$_POST['vigneronID'], 0);
error_log("REQUEST ".$_REQUEST['vigneronID'], 0);
我从显示在警报中的服务器获得答案,但无法访问我通过参数传递的数据(语法错误?)。
我可以进行正常的 ajax 调用,但由于我使用的是 plupload 库(与 json rpc 一起使用),我想弄清楚为什么我不能使用这种方法!
我尝试过使用或不使用 contentType 但似乎没有改变任何东西......