我正在尝试通过JSONP检索跨域用户数据,并通过PHP和jQuery获得不同的结果。首先,这里是通过PHP生成的JSONP(正确的标题('Content-type:application / json; charset = utf-8')被传递):
hsAuthCallback({"planID":4,"memberPlan":"EMPLOYEE","memberName":"Fred"});
我正在尝试两种方法来检索它,首先是 jQuery ,这是有效的
$(function() {
$.ajax({
type: 'GET',
url: 'https://url.com/path_to_file',
jsonpCallback: 'hsAuthCallback',
contentType: "application/json",
dataType: 'jsonp',
success: function(data) {
$('#jsOutput').text( JSON.stringify(data) );
},
error: function(jqXHR, textStatus, errorThrown) {
console.log("error("+jqXHR+", "+textStatus+", "+errorThrown+")");
}
});
});
按预期退货:
{"planID":4,"memberPlan":"EMPLOYEE","memberName":"Fred"}
接下来是 PHP,问题出在哪里(我使用函数来解码jsonp)
// Decode JSONP (http://felix-kling.de/blog/2011/01/11/php-and-jsonp/)
function jsonp_decode($jsonp, $assoc = false) {
if($jsonp[0] !== '[' && $jsonp[0] !== '{') {
$jsonp = substr($jsonp, strpos($jsonp, '('));
}
return json_decode(trim($jsonp,'();'), $assoc);
}
$url = 'https://url.com/path_to_file';
$jsonp = file_get_contents($url);
$plan_data = jsonp_decode($jsonp, true);
var_dump($plan_data);
返回:
array(3) {
["planID"]=>
int(0)
["memberPlan"]=>
string(0) ""
["memberName"]=>
string(0) ""
}
我已经在S3上使用实际的json文件进行了测试,它似乎有效。我对生成的JSONP的控制有限。有什么想法吗?