- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- 网络服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕截图
- PhantomJS - 页面自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 实用资源
- PhantomJS - 快速指南
- PhantomJS - 实用资源
- PhantomJS - 讨论
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
广告