我使用npm包“zombie”访问website 这是我的nodejs代码。
var Browser = require('zombie');
var url = "https://booking.tigerair.com";
var browser = new Browser();
browser.visit(url, function(err) {
if (err) {
console.log(err);
}
console.log(browser.success);
});
但我得到了结果:
[TypeError: undefined is not a function]
[TypeError: undefined is not a function]
true
虽然我研究了official document ,它没有说明问题。
这是我的nodejs的基本信息。
节点版本:“v0.12.7”
npm版本:“2.11.3”
僵尸版:“2.5.x”
感谢您的所有建议。