我试图让NightmareJS使用一些代理。
这就是我的代码的样子:
const Nightmare = require('nightmare');
var nightmare = Nightmare({
switches: {
'proxy-server': 'exampleProxy.io:19081',
'ignore-certificate-errors': true
},
show: true
});
nightmare
.goto('http://www.example.com')
奇怪的是:它有点工作,只是非常慢,经常有超时。我在本地机器上测试。没有代理,它的速度非常快。可以看出代理本身很快。
知道可能出现什么问题吗?