我从来没有使用 javascript 逐行读取文件,而 phantomjs 对我来说是一个全新的球赛。我知道幻影中有一个 read() 函数,但我不完全确定如何在将数据存储到变量后对其进行操作。我的伪代码是这样的:
filedata = read('test.txt');
newdata = split(filedata, "\n");
foreach(newdata as nd) {
//do stuff here with the line
}
如果有人可以用真正的代码语法帮助我,我对 phantomjs 是否会接受典型的 javascript 或什么感到有点困惑。