我试图从Wordpress网站将JSON url中的数据传输到我的离子应用程序,它显示了这个错误:
SyntaxError: Unexpected token ? in JSON at position 4885
at JSON.parse (<anonymous>)
at fromJson (ionic.bundle.js:14660)
at defaultHttpResponseTransform (ionic.bundle.js:23680)
at ionic.bundle.js:23771
at forEach (ionic.bundle.js:13696)
at transformData (ionic.bundle.js:23770)
at transformResponse (ionic.bundle.js:24559)
at processQueue (ionic.bundle.js:29132)
at ionic.bundle.js:29148
at Scope.$eval (ionic.bundle.js:30400)
这是我的json网址 http://www.casting.tunisiebillet.com/api/get_posts/?count=93
这就是我的angularjs控制器的工作原理:
$scope.recent_posts=[];
$http.get("http://www.casting.tunisiebillet.com/api/get_posts/?count=93").then(function(data){
console.log(data);
我认为JSON语法有错误,我该如何解决? 谢谢。