gpt4 book ai didi

node.js - NodeJS, fs.readFileSync 逐字串读取,运行。如何?

转载 作者:搜寻专家 更新时间:2023-10-31 22:39:44 24 4
gpt4 key购买 nike

对不起,这么愚蠢的问题,

我如何在 NodeJS 中逐个字符串地从文件中读取一些值,例如 - url,并最终对每个字符串进行操作?

var contents = fs.readFileSync('test.txt', 'utf8');

然后呢?

需要browserstack+selenium测试。我想从文件中一个接一个地运行一些链接,并对它们做一些事情。

更改代码如下:来自

console.log(lines[i++])

line = (lines[i++])
driver.get(line);
driver.getCurrentUrl()
.then(function(currentUrl) {
console.log(currentUrl);

但它只工作一次。

var str=fs.readFileSync('test.txt');
str.split(/\n/).forEach(function(line){})


C:\nodejstest>node test1.js
C:\nodejstest\test1.js:57
str.split(/\n/).forEach(function(line){
^

TypeError: str.split is not a function
at Object.<anonymous> (C:\nodejstest\test1.js:57:5)
at Module._compile (module.js:413:34)
at Object.Module._extensions..js (module.js:422:10)
at Module.load (module.js:357:32)
at Function.Module._load (module.js:314:12)
at Function.Module.runMain (module.js:447:10)
at startup (node.js:142:18)
at node.js:939:3

有效!非常感谢!

最佳答案

另一种(更简单的)方法是将整个文件读入缓冲区,将其转换为字符串,在行终止符处拆分字符串以生成行数组,然后遍历该数组,如下所示:

var buf=fs.readFileSync(filepath);

buf.toString().split(/\n/).forEach(function(line){
// do something here with each line
});

关于node.js - NodeJS, fs.readFileSync 逐字串读取,运行。如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36268159/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com