cart = function () {
$.ajax({
url: 'test/shop.php',
dataType: 'json',
data: {
get: "all"
},
success: function (data) {
console.log("got it!");
refreshTable(data);
$('#cart table').hide().fadeIn('fast');
},
error: function (jqXHR, textStatus, errorThrown) {
console.log('Ajax request failed: ' + textStatus + ', ' + errorThrown);
}
});
shop.php
$json_a = json_encode($_SESSION['cart']);
echo $json_a;
我想要包含shop.php,以便可以从所有文件中访问它。 但是当包含shop.php时,echo json也会打印到屏幕上。我该如何防止这种情况?