IE浏览器
我正在尝试使用我的Mac中的VirtualBox测试Internet Explorer 11的网站兼容性。 我使用Webpack-Dev-Server运行本地服务器。
当我通过http://10.0.2.2:8080访问网页时,网站加载正常; 但检查员小组反复抛出这个错误:
SCRIPT7002: XMLHttpRequest: Network Error 0x2efd, Could not complete the operation due to error 00002efd.
[WDS] Disconnected!
任何线索如何解决这个错误? 谢谢!
可能有很多原因,其中一个可能在前端路径中:
在我的设置中,webpack服务器在localhost:8000上代理Symfony服务器。 在前端,我有一个配置变量的路径:
var configuration = {
apiPath: 'http://localhost:8000/api/v1/'
}
这导致请求到VirtualBox中的localhost:8000。 我改变它有VirtualBox localhost桥路径:
var configuration = {
apiPath: 'http://10.0.2.2:8000/api/v1/'
}
随着这一变化,我得到了我的应用程序在VirtualBox中工作。
您需要在主机文件中将localhost设置为10.0.2.2。 这个答案显示了如何。
链接地址: http://www.djcxy.com/p/33941.html上一篇: internet explorer