搜索互联网上的各个地方,没有运气:
我在尝试向myapifilms.com发送AJAX请求时收到0x80700013错误代码
完整错误如下:
SEC7120: Origin http://ciniviu.com not found in Access-Control-Allow-Origin header.
ciniviu.com
SCRIPT7002: XMLHttpRequest: Network Error 0x80700013, Could not complete the operation due to error 80700013.
ciniviu.com
Image of error displaying on console
我收到错误的代码:
function getCurrentFilms(title, year) {
var url = "http://myapifilms.com/imdb/inTheaters";
$.ajax({
url: url,
type: 'GET',
dataType: 'json',
success: displayFilms,
timeout: false,
async: false
});
}
想知道这是否是一个可解决的问题,或者它是否归结为目标网址不允许我们发出AJAX请求。
(抱歉,我是Ajax的新手,我尝试过一些教程和解释,但我可能听不懂一些'行话')
如果您需要更多信息,请询问,我很乐意提供。