我使用的是PhantomJS的1.9.1版本。并且还尝试使用1.9.0版本的PhantomJS和全新的最新版本。 Phantom不加载css并且状态为“fail”。我还尝试使用本地和其他服务器,如apache。 为了测试,我使用以下代码:
var page = require('webpage').create();
var cssUrl = 'http://31.31.201.139:8001/download/any.css';
var otherUrl = 'http://31.31.201.139:8001/download/any.other';
page.open(cssUrl, function (status) {
console.log('css status', status)
page.open(otherUrl, function (status) {
console.log('other status', status)
phantom.exit();
});
});
我在不同的操作系统上启动了它,结果是一样的。
你能帮我解决这个问题吗?