嗨,我想在 xui 中获取一个带有 xhr 的 json 文件,我的代码是这样的:
function getRequest()
{
x$().xhr('http://localhost:8080/DummyServer/login/request/',
{
callback: function()
{
saveLocalStorage(this.responseText);
},
});
}
我用 safari 控制台检查,我收到这样的错误:
XMLHttpRequest cannot load http://localhost:8080/DummyServer/login/request/. Origin http://localhost is not allowed by Access-Control-Allow-Origin.
但是当我使用 coda ide 时没有错误,我想知道为什么。任何人都可以帮助我解决这个 xui.js 吗?