Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
367 views
in Technique[技术] by (71.8m points)

javascript - Phantom JS synchronous AJAX request : NETWORK_ERR: XMLHttpRequest Exception 101

I am making a synchronous ajax call ( ajax settings async: false ). This works well.

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try disabling the web security by using the command-line option --web-security=no when running your script. (phantomjs --web-security=no yourscript.js)

From the PhantomJS reference (http://phantomjs.org/api/command-line.html):

"--web-security=[true|false] enables web security and forbids cross-domain XHR (default is true). Also accepted: [yes|no]


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...