我正在使用 GET 请求通过 http 访问 url。我正在使用下面的代码。
onReady: function() {
var makeAjaxRequest = function() {
var myUrl = encodeURI('http://domainname/VW-MAPP/fgnwasxuyu/10548168/2012-04-11 12:42:36/5555');
Ext.Ajax.request({
method: 'get',
url: myUrl,
success: function(response) {
alert(''+response.responseText);
console.log("response:-"+response.responseText); },
failure: function (response) {
console.log("Failure");
console.log("response status:-"+response.status);
alert("Failure");
}
});
};
new Ext.Panel({
fullscreen: true,
id: 'content',
scroll: 'vertical',
dockedItems: [{
xtype: 'toolbar',
dock: 'top',
items: [{
text: 'XMLHTTP',
handler: makeAjaxRequest
}]
},{
id: 'status',
xtype: 'toolbar',
dock: 'bottom',
title: "Tap a button above."
}]
});
}
});
我尝试了很多但低于错误
XMLHttpRequest 无法加载 //URLNAME//。Access-Control-Allow-Origin 不允许 Origin null。
如果有人有任何想法,请提供帮助。
谢谢