PhantomJS - 写入



此方法包含三个参数:源、内容字符串/对象

  • - 是将内容写入的文件。

  • 内容 - 此参数是要写入文件的内容。

  • 字符串/对象 - 此参数具有模式和字符集。

    • 模式 - 打开模式。由“r”、“w”、“a/+”、“b”字符组成的一个字符串。

    • 字符集 - 一个不区分大小写、不区分大小写的 IANA 字符集名称。

语法

其语法如下-

fs.write(path, content, 'w');

示例

以下示例演示了write 方法的工作原理。

命令 - phantomjs write.js writemode.txt

var fs = require('fs'); 
var system = require('system'); 
var path = system.args[1]; 
var md = fs.touch(path); 

console.log("file is present : "+fs.isFile(path)); 
var n = fs.write(path, 'Hello world', 'w'); 

console.log("Content present in " +path + " are :"); 
console.log(fs.read(path)); 
phantom.exit();

上述程序会生成以下输出

file is present : true 
Content present in writemode.txt are : 
Hello world 
phantomjs_file_system_module_methods.htm
广告