为了账号安全,请及时绑定邮箱和手机立即绑定

ajax跨域问题

ajax跨域问题

四季花海 2018-08-28 13:43:23
我在写一个chrome插件,用来做某个网站的查词翻译,现在需要调用扇贝的api用原生js写的ajax:            var url = "https://api.shanbay.com/bdc/search/?word=dog";                         var xmlhttp = new XMLHttpRequest();             xmlhttp.onreadystatechange = function () {                             if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {                                 var res = JSON.parse(xmlhttp.responseText);                                 console.log(res);                 }             };             xmlhttp.open("GET", url);             xmlhttp.send();每次查询的时候就会报错XMLHttpRequest cannot load https://api.shanbay.com/bdc/s... No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'chrome-extension://coknhbkedmkppmjkdjfkbcndclocbbnh' is therefore not allowed access.昨天调用的时候还没有任何问题请问该如何解决
查看完整描述

1 回答

?
慕婉清6462132

TA贡献1804条经验 获得超2个赞

做 Chrome 插件有 API 能跨域的,看下文档


查看完整回答
反对 回复 2018-10-23
  • 1 回答
  • 0 关注
  • 581 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信