我正在尝试从我的 wordpress 博客中获取最近的帖子,但它返回的是 html 而不是 json。我想使用 json 来更轻松地访问博客内容。我已经安装并激活了插件。这是我为获取帖子所做的工作:
$http.get('blog/?json=get_recent_posts')
.success(function(data, status, headers, config){
$scope.post = data;
console.log(data);
})
.error(function(data, status, headers, config){-
console.log("unable to access!!!!!!!!!!!");
});
它返回html而不是json的原因是什么?有什么解决方法吗?使用 jsonp 提到的其他一些帖子,但这对我也不起作用。