26

Web クローラーがあり、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.onerrorまたはwebpage.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 に答える