我的繼承人Ajax請求語法錯誤在jquery.ajax GET請求:1追加到URL
$.ajax({
url: req_url,
contentType: 'application/json',
type: 'GET',
dataType:'jsonp',
success: function(data){
console.log(data);
},
})
和錯誤
?id=BLC&format=json&starttime=2016-09-13&callback=jQuery3100840…
1473881883047&=147388…:1 Uncaught SyntaxError: Unexpected token :
刪除所有緩存的jQuery附加在我使用的結束這個代碼
$.ajax({
url: req_url,
contentType: 'application/json',
type: 'GET',
dataType:'jsonp',
jsonp: false,
jsonpCallback: 'callback',
cache: true,
success: function(data){
console.log(data);
},
})
和這裏的錯誤是一樣的
?id=BRD&format=json&starttime=2016-09-13:1 Uncaught SyntaxError: Unexpected token :
這應該被忽略。它被稱爲「緩存破壞者」並且是無害的。它只是改變URL,就足以繞過緩存。 –
[爲什麼jQuery.ajax()將參數添加到url?](http://stackoverflow.com/questions/2749560/why-does-jquery-ajax-add-a-parameter-to-the -url) –
@NativeCoder看起來不像緩存中斷器。它作爲附加參數被添加,它不會修改現有的參數。 – Barmar