我的AJAX脚本都运行正常,并且成功功能正在运行,但脚本仍然会出现错误消息。我已经确定问题是解析错误。我还没有确定为什么会发生这种情况以及如何阻止它。
AJAX
var dataString = 'title=' + title + '&price=' + price + '&duration=' + duration + '&dives=' + dives + '&hire=' + hire + '&date=' + date + '¤cy=' + currency + '&cost=' + cost + '&supplier=' + supplier;
$.ajax({
type: 'POST',
url: '<?php echo $thisposturl?>?catadd',
data: dataString,
beforeSend: function() {
$('#loadwheel-new').html('<img id="BKloader" src="http://www.divethegap.com/update/z-images/structure/icons/ajax-loader.gif" alt="" width="30" height="30"/>');
},
error: function() {
$('#loadwheel-new').html('lkk');
},
dataType:'json',
success: function(data) {
$('#CollapsiblePanel' + data.CATid).load('<?php echo $thisposturl?> #' + data.CATid);
;
} });
PHP
$title = $_POST['title'];
$CATid = $the_post_id;
$date = get_the_time('Y-m-d');
$price = $_POST['price'];
$duration = $_POST['duration'];
$dives = $_POST['dives'];
$hire = $_POST['hire'];
$currency = $_POST['currency'];
$cost = $_POST['cost'];
$supplier = $_POST['supplier'];
echo json_encode( array('title'=>$title, 'CATid'=>$CATid, 'date'=>$date, 'price'=>$price, 'duration'=>$duration, 'dives'=>$dives, 'hire'=>$hire, 'currency'=>$currency, 'cost'=>$cost, 'supplier'=>$supplier));
答案 0 :(得分:1)
在输出JSON
之前,尝试使用ob_clean
在服务器端使用干净缓冲区
答案 1 :(得分:0)
我在调用$ .getJSON时碰到了这个问题,但我认为它归结为同样的事情,JSON格式不正确。我通过在JavaScript try / catch中包装我的json解析来解决它。
答案 2 :(得分:0)
试过这个吗?
var dataString = {
'title': title,
'price': price,
'duration': duration,
'dives': dives,
'hire': hire,
'date': date,
'currency': currency,
'cost': cost,
'supplier': supplier
};