我正试图从php与AJAX Post交互中获取值。 我已经读过我应该使用JSON dataType,但这是我第一次这样做,我得到“SyntaxError:JSON.parse:在JSON数据的第1行第72列的JSON数据之后出现意外的非空格字符”。< / p>
我的AJAX 如下:
function apfaddpost() {
var fd = new FormData($('#msform')[0]);
fd.append( "main_image", $('#main_image')[0].files[0]);
fd.append( "action", 'apf_addpost');
$('#form-container').hide();
$('#processing').show();
var postProject = $.ajax({
type: 'POST',
url: apfajax.ajaxurl,
data: fd,
dataType: 'json',
processData: false,
contentType: false,
});
postProject.done(function(data, textStatus, XMLHttpRequest) {
$('#processing').hide();
$('#confirm').show();
//elements where I should display success message and link
var success = '#success';
var projectlink = '#projectlink';
jQuery(success).html('');
jQuery(success).append(data.success);
$("#projectlink").attr("href", data.projectlink);
});
postProject.fail(function(MLHttpRequest, textStatus, errorThrown) {
alert(errorThrown);
});
}
我的php
if ( $pid != 0 )
{
$message = 'Your post has been successfully added!';
$project_link = get_permalink($pid);
$result = array('success'=>$message,'projectlink'=>$projectlink);
echo json_encode($result);
}
else {
$message = 'Error occurred while adding the post';
$result = array('fail'=>$message);
echo json_encode($result);
}
我的HTML应该在哪里打印这些值:
<div id="confirm" class="row" style="display:none">
<div class="col-sm-12">
<h2 class="text-center"><?php _e("Thank you!","KleeiaDev") ?></h2>
<div class="text-center">
<p id="success"></p><!-- Here should go the success message -->
<p>
<a id="projectlink" href="">Link</a><!-- Here should go the link I'm getting as result -->
</p>
</div>
</div>
</div>
我哪里错了?
答案 0 :(得分:1)
如果您的PHP在echo json_encode($result);
之后输出其他内容,则会导致该错误。
确保您没有输出任何其他内容。如果在json_encode之后没有更多的应用程序逻辑使用exit
。