26

我有一个网络爬虫,我使用 phantomjs 解析页面,我想获取 html,但我总是在 html 代码之前的输出中得到这种类型的错误

ReferenceError: Can't find variable: collapse_content_selector

  http://staticloads.com/js/toggle.js?v=2013.10.04:135
TypeError: 'undefined' is not a function (evaluating '$('[placeholder]').placeholderLabel()')

我怎么能阻止它

4

1 回答 1

42

最简单的方法是向phantom.onerrorpages.onerror添加错误处理程序。当出现 JavaScript 执行错误(在页面中或在您的脚本中)时,将调用这些回调。

page.onError = function(msg, trace) {
    var msgStack = ['ERROR: ' + msg];
    if (trace && trace.length) {
        msgStack.push('TRACE:');
        trace.forEach(function(t) {
            msgStack.push(' -> ' + t.file + ': ' + t.line + (t.function ? ' (in function "' + t.function + '")' : ''));
        });
    }
    // uncomment to log into the console 
    // console.error(msgStack.join('\n'));
};
于 2013-10-23T10:03:43.110 回答