本文主要是介绍ception: Failed to execute ‘open‘ on ‘XMLHttpRequest‘: Invalid URL,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ception: Failed to execute ‘open’ on ‘XMLHttpRequest’: Invalid URL
at http://159.226.158.125:8008/static/js/vendor.c59f323a0c8fa195b048.js:7:113819
检查请求链接是否是完整无误
api.js内容:
const application = {add: 'generalApplicationService/addData',
}
出错原因:也有可能是路径少 /
错误写法:
apiUrl:'"http://×××.×××.×××.×××:8080"'
正确写法:
apiUrl:'"http://×××.×××.×××.×××:8080/"'
注:结合api.js内容看完整链接,我出错的原因是少 /
这篇关于ception: Failed to execute ‘open‘ on ‘XMLHttpRequest‘: Invalid URL的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!