dataType:“ json”不起作用

dataType:“ json”不起作用,第1张

dataType:“ json”不起作用

常见的问题是浏览器在JSON之前打印“其他内容”,无论它是可读还是 不可读 (不可见)字符。尝试做这样的事情:

<?php//at the very beginning start output buffereingob_start();// do your logic here// right before outputting the JSON, clear the buffer.ob_end_clean();// now printecho json_enpre(array("id" => $realid, "un" => $username, "date" => $date));?>

现在,所有补充数据(JSON之前的数据)都将被丢弃,您应该让它正常工作…



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5505926.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存