PhantomJS write写入
该方法有三个参数: 源、内容 和 字符串/对象 。
- 源 − 要写入内容的文件。
-
内容 − 需要写入文件的内容。
-
字符串/对象 − 这个参数包含模式和字符集。
- 模式 − 打开模式。由’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