如何防止跨域 jQuerygetJSON
请求对回调问号进行编码:
$.getJSON(searchResultsURL, {
token: jSONAPItoken,
callback: '?'
}, function(data){
……
})
最终发送请求:
http://example.com/xxx?token=tokenxxx&callback=%3F
它在哪里编码?
to %3f
。我怎样才能防止这种情况?