我的 PHP 脚本在解码我通过 AJAX 发送给它的 JSON 时遇到问题。
jQuery:
$.ajax({
url : 'admin/modifyPermissions',
type : 'post',
data : {
'JSON' : JSON
},
success : function(msg){
if(msg == '1') {
alert('Permissions saved successfully');
} else {
alert(msg);
}
}
});
PHP 脚本:
public function modifyPermissions(){
if(isset($_POST['JSON']) && !empty($_POST['JSON'])) {
$json = json_decode($_POST['JSON'],true);
if($json !== NULL && $json !== FALSE) {
} elseif($json === NULL){
die('The string passed is not a valid JSON object and cannot be decoded.' . "\n" . $_POST['JSON']);
} else {
die('There was an error with the JSON string');
}
} else {
die('No JSON string was sent!');
}
}
传递的 JSON 在我看来格式正确:
{"martin":{3,5},"user2":{3,4,5}}
PHP返回null。我的服务器上安装了 PHP 5.2.7,所以我不能使用 json_last_error()