我有一个php文件,它在前端提供了一个JSON
<?php
header('Content-type: application/json');
require_once('includes/social-parser.php');
$id = $_POST['id'];
$youtube_playlists = $_POST['y'];
$twitter_lists = $_POST['t'];
$keywords = $_POST['k'];
$parser = new socialParser();
$json = $parser->build(json_decode($youtube_playlists), json_decode($twitter_lists), json_decode($keywords),$id);
shuffle($json);
print_r(str_replace('\\/', '/', json_encode($json)));
die();
?>
并且在我的前端我使用调用请求json:
jQuery.ajax({
url: '/blog/wp-content/themes/blog/social-ajax.php',
type: 'POST',
dataType: 'json',
data: {
y: '<?php echo json_encode($youtube_playlists); ?>',
t: '<?php echo json_encode($twitter_lists); ?>',
k: '<?php echo json_encode($keywords); ?>',
id: '<?php echo $post->ID; ?>'
},
success: function(data, textStatus, xhr) {
jQuery.event.trigger({
type: "social-ajax",
social_object: data
});
},
error: function(xhr, textStatus, errorThrown) {
console.log("Error loading social data");
console.log(xhr);
}
});
在某些情况下它可以工作,但在其他情况下它会记录错误,因为它转到错误回调但状态为200 ..错误是:
提前致谢
答案 0 :(得分:2)
在我看来,你的json是无效的:
print_r(str_replace('\\/', '/', json_encode($json)));
应该是:
// if $json is not valid json
echo json_encode($json);
或
// if $json is already valid json
echo $json;