-1
我正在通過Jsonp調用一個rest API。 API服務器返回正確的值,但是我在'參數列表'之後'缺少')並且ajax返回錯誤。這裏有什麼不對?jsonp call:missing)在參數列表後
在Javascript中,
$.ajax({
url: 'http://localhost:8080/version',
dataType: 'jsonp',
type: 'GET',
success: function (data) {
console.log(data);
},
error: function(xhr, status, error){
console.log(xhr.status + ": " + xhr.responseText)
},
});
在Java中,
@GET
@Produces("application/javascript")
public String getVersion(@QueryParam("callback") String callback) {
return callback + "(hello)";
}
顯示生成錯誤的實際JSONP文本。你的Java代碼產生了一些不正確的東西,但是在錯誤信息建議的方式上並不正確。 –