标签: angularjs rest jsonp
我正在访问以下REST服务以获取我的数据。
http://ops.epo.org/3.1/rest-services/classification/cpc/search?q=Test
我必须使用JSONP请求。但是那里的响应是以XML形式出现的。即使我使用callback = JSON_CALLBACK也没有任何区别。
如果我创建自己的回调方法,它总是在所有其他处理完成后运行。所以这对我没用。
请告知我该如何管理?
此致
答案 0 :(得分:3)
尝试在查询参数之前将.js附加到网址:
.js
http://ops.epo.org/3.1/rest-services/classification/cpc/search.js?q=test
http://ops.epo.org/3.1/rest-services/classification/cpc/search.js?q=test&callback=?