我有一個如下所示的文本{"age": "52", "id": 1, "name": "Hulk"}{"age": "33", "id": 2, "name": "Iron Man"}我想讀取文件并將其放入一個對象數(shù)組中。這是我到目前為止所做的const fs = require("fs");const customerFile = fs.readFileSync("./customers.txt", "utf-8");const customerArr = customerFile.split("\n");如您所見,我正在拆分文件,這會創(chuàng)建一個數(shù)組,但我一直在研究如何將數(shù)組中的項目轉換為對象。我怎樣才能做到這一點?
如何將文本文件轉換為對象數(shù)組?
FFIVE
2023-05-25 16:18:28