0
我有一個c:\index.html
和使用定義JSONP調用的jQuery:Mocktest本地JSONP拋出parseerror 「回調不叫」
var url = 'http://localhost:8080/test/jsonServlet'
if (mockTest)
url = 'file:bla.json';
jQuery.ajax({
type: "POST",
url: url,
dataType: 'jsonp',
error: function(a,b,c) {
console.debug("ERR", b, c);
}
});
的c:\bla.json
是這樣的:
var f = this.jQuery.expando;
console.debug("BLA", f);
f = this[f].handle;
console.debug("TYPE", typeof f);
f({'decoration':'Hello World!'}); // call the callback!
有三條消息:
BLA jQuery1705534191443584859
TYPE function
ERR parsererror jQuery1705534191443584859_1372951198352 was not called