请在下面找到加载主页时加载的 javascript。
$(document).ready(function() {
$.post('../business logic/NewsLogic.php', null, function(response) {
var respObj = $.parseJSON(response);
if (respObj != null) {
alert('I am here ');
}
});
我无法解析 JSON 我得到了对象不支持属性或方法 parseJSON 的错误
/* 下面是 PHP 示例 */
$newsDAO = new NewsDAO();
$newsInfo = new News();
$respArr = array();
$respArr = $newsDAO->showAllNews();
print json_encode($respArr);
其中 respArr 是一个包含元素的数组。