gpt4 book ai didi

javascript - 如何将txt文件中的数据返回到函数外部的数组中保存?

转载 作者:行者123 更新时间:2023-12-02 23:39:57 25 4
gpt4 key购买 nike

这是我第一次使用 javascript,我试图将从 .txt 文件中提取的数据保存在我在代码外部和代码开头声明的数组中。 (这是 Electron 框架)。

我尝试提取数据并将其保存到数组中。

const { remote } = require('electron')
const app = remote.app
const $ = require('jquery')
const fs = require('fs')
const dialog = remote.dialog

const win = remote.getCurrentWindow()

let dataMeetingsFromTxt

{...}

function readMeetingsToSaveIntoArray() {
dataMeetingsFromTxt = []
fs.readFile('./dataMeetings.txt', 'utf-8', (err, data) => {
if (err) throw err;
dataMeetingsFromTxt = data.toString().split("\n");
})
}

{...}

$('.oneBTN').on('click', () => {
readMeetingsToSaveIntoArray()
console.log(dataMeetingsFromTxt.length) //The output is always 'undefined'
})

输出始终为“未定义”。

最佳答案

这是因为 fs.readFile 是异步的。第三个参数是回调,这是 console.log 应该完成的地方。否则,点击处理程序上的 console.log 将在 readFile 回调之前执行。

const { remote } = require('electron')
const app = remote.app
const $ = require('jquery')
const fs = require('fs')
const dialog = remote.dialog

const win = remote.getCurrentWindow()

let dataMeetingsFromTxt

{...}

function readMeetingsToSaveIntoArray() {
dataMeetingsFromTxt = []
fs.readFile('./dataMeetings.txt', 'utf-8', (err, data) => {
if (err) throw err;
dataMeetingsFromTxt = data.toString().split("\n");
console.log(dataMeetingsFromTxt.length);
})
}

{...}

$('.oneBTN').on('click', () => {
readMeetingsToSaveIntoArray()
})

关于javascript - 如何将txt文件中的数据返回到函数外部的数组中保存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56126827/

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