javascript 将CSV文件转换为JavaScript文字的集合

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 将CSV文件转换为JavaScript文字的集合相关的知识,希望对你有一定的参考价值。

//the Mirth file reader has a CSV file (now in the msg object)
//be sure your channel's incoming data type is 'delimited text'

//let's pretend this csv contains customers
var customers = [];
var header = msg.row[0];
for(var i=1;i<msg['row'].length();i++)
{
	var cust = {};
	for (col in msg.row[i].children()) {
		var columnName = header.children()[col];
		//set the customer property, by name, based on the name of the column in the header row
		cust[columnName] = msg['row'][i].children()[col].toString();
	}
	customers.push(cust);
}

//you now have an array of customer objects. 
channelMap.put("customers", customers);

以上是关于javascript 将CSV文件转换为JavaScript文字的集合的主要内容,如果未能解决你的问题,请参考以下文章

javascript 将CSV文件转换为JavaScript文字的集合

JavaScript - 将 CSV 转换为 XLSX(最好不使用库)

Python - 将 csv 文件转换为 JSON

拆分 csv 行并转换数值(Typescript、Javascript)

Javascript / 将 json 转换为 csv

如何将 JSON 转换为 CSV 格式并存储在变量中