好的,所以我尝试使用 jsonp 进行跨域 ajax webservice 调用以返回类别列表以填充下拉列表并得到奇怪的结果。我已经遵循了尽可能多的示例,并且在我的域上得到了一个 jsonp 请求,但它在其他域上不起作用。
下面的代码:
function parseJSON(item){
return JSON.parse(item, function (key, value) {
var type;
if (value && typeof value === 'object') {
type = value.type;
if (typeof type === 'string' && typeof window[type] === 'function') {
return new (window[type])(value);
}
}
return value;
});
};
function getCategories() {
var webserviceURL = 'http://www.theprintersinc.co.uk/TPIWS.asmx/getCategories';
var myData;
$.ajax({
type: "GET",
contentType: "application/json; charset=utf-8",
url: webserviceURL,
data: { galleryGuid: 1 },
dataType: "jsonp",
complete: function (msg) {
if (msg) {
var myObject = parseJSON(msg.responseText);
var myCatList = parseJSON(myObject.d);
if (myCatList) {
catList = myCatList;
setCatDDL();
};
};
//reset close button
},
error: function (xhr, ajaxOptions, thrownError) {
var err = "err";
}
});
};
您可以在http://www.theprintersinc.co.uk/stackHelp.html看到这在我的域上运行。 但是,当我尝试从我的电脑或另一台服务器上的简单 html 文件运行此代码时,它不起作用。我只是从 jbug 得到一个语法错误。
提前非常感谢任何和所有帮助!
缺口