PhantomJS read读取

PhantomJS read读取

此方法读取指定文件中的数据。

语法

其语法如下:

var fs = require('fs'); 
fs.read(path);

示例

让我们看一个示例来理解 read 方法是如何工作的。

命令 - phantomjs read.js test.txt

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

console.log(fs.read(path)); 
phantom.exit();

测试.txt文件

I am Testing Phantomjs

上述程序生成以下 输出

I am Testing Phantomjs

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程