我需要将一个字符串返回到 jQuery 调用中,但没有传递任何内容
php文件中的函数代码
function setTableData()
{
$handle = fopen("/tmp/setTableData.log", "w");
$data='[{id:1, name:"Oli Bob", progress:12, gender:"male", rating:1, col:"red", dob:"14/04/1984", car:1, lucky_no:5}]';
echo($data);
fclose($handle); //chiusura file
}
js中的代码
jQuery.ajax({
url: "modules/Customers/CustomersAjax.php",
type: "GET",
cache: false,
datatype:'json',
data: "action=setTableData",
success: function (esito2) {
alert(esito2);
}
});
我放置的警报打印为空
慕码人8056858
蛊毒传说
相关分类