NodeJS读取文件名是日文字符

时间:2018-05-17 07:42:23

标签: node.js

我的文件名是momo1.json。我可以在Nodejs中阅读它们

var fs = require('fs');
var jsonWelcome = fs.readFileSync(WELCOME_JSON, UTF8_FORMAT);
var dataWelcome = JSON.parse(jsonWelcome);

但现在我更改文件名是ももたろう.json。我不能再读文件,告诉我为什么和解决方案我可以通过日语字符读取文件名

1 个答案:

答案 0 :(得分:0)

尝试使用 require()代替:

var dataWelcome = require("./ももたろう.json");

//output the data to see if it works
console.log(JSON.stringify(dataWelcome));

Live Demo