Phantom JS synchronous AJAX request : NETWORK_ERR: XMLHttpRequest Exception 101(Phantom JS 同步 AJAX 请求:NETWORK_ERR: XMLHttpRequest Exception 101)
问题描述
我正在进行同步 ajax 调用(ajax 设置 async: false ).这很好用.
I am making a synchronous ajax call ( ajax settings async: false ). This works well.
现在我正在尝试在 phantomJS 中为此编写一个自动化测试,但出现此错误
Now I'm trying to write an automated test for this in phantomJS and I'm getting this error
NETWORK_ERR: XMLHttpRequest Exception 101
我检查了我的服务日志,似乎服务没有收到任何请求.
I checked my service logs and it seems like service is not getting any request.
推荐答案
尝试在运行脚本时使用命令行选项 --web-security=no
禁用网络安全.(phantomjs --web-security=no yourscript.js
)
Try disabling the web security by using the command-line option --web-security=no
when running your script. (phantomjs --web-security=no yourscript.js
)
来自 PhantomJS 参考 (http://phantomjs.org/api/command-line.html):
From the PhantomJS reference (http://phantomjs.org/api/command-line.html):
"--web-security=[true|false]
启用网络安全并禁止跨域 XHR(默认为 true).也接受:[yes|no]代码>
"--web-security=[true|false]
enables web security and forbids cross-domain XHR (default is true). Also accepted: [yes|no]
这篇关于Phantom JS 同步 AJAX 请求:NETWORK_ERR: XMLHttpRequest Exception 101的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Phantom JS 同步 AJAX 请求:NETWORK_ERR: XMLHttpRequest Exception 101
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01