web-dev-qa-db-ja.com

PhantomJS / JavaScript:コンソールではなくファイルに書き込む

PhantomJSから、コンソールではなくログに書き込む方法を教えてください。

https://github.com/ariya/phantomjs/wiki/Examples では、常に(私が見たものでは)次のようになります。

console.log('some stuff I wrote');

これはあまり役に立ちません。

24
user984003

だから私はそれを理解しました:

>phantomjs.exe file_to_run.js > my_log.txt
15
user984003

以下は、phantomjsによってコンテンツを直接ファイルに書き込むことができます。

var fs = require('fs');
   try {
    fs.write("/home/username/sampleFileName.txt", "Message to be written to the file", 'w');
    } catch(e) {
        console.log(e);
    }
    phantom.exit();

いくつかの警告または例外が発生した場合、user984003による回答のコマンドは失敗します。一部のコードベースでは常に次のメッセージが表示され、そのファイルにも記録されるため、特定の要件に該当しない場合があります。

Refused to display document because display forbidden by X-Frame-Options.
42
Arun

元のconsole.log関数をオーバーライドできます。これを見てください。

Object.defineProperty(console, "toFile", {
    get : function() {
        return console.__file__;
    },
    set : function(val) {
        if (!console.__file__ && val) {
            console.__log__ = console.log;
            console.log = function() {
                var fs = require('fs');
                var msg = '';
                for (var i = 0; i < arguments.length; i++) {
                    msg += ((i === 0) ? '' : ' ') + arguments[i];
                }
                if (msg) {
                    fs.write(console.__file__, msg + '\r\n', 'a');
                }
            };
        }
        else if (console.__file__ && !val) {
            console.log = console.__log__;
        }
        console.__file__ = val;
    }
});

次に、これを行うことができます:

console.log('this will go to console');
console.toFile = 'test.txt';
console.log('this will go to the test.txt file');
console.toFile = '';
console.log('this will again go to the console');
10
Ivan