我的文件名是momo1.json。我可以在Nodejs中阅读它们
var fs = require('fs');
var jsonWelcome = fs.readFileSync(WELCOME_JSON, UTF8_FORMAT);
var dataWelcome = JSON.parse(jsonWelcome);
但现在我更改文件名是ももたろう.json。我不能再读文件,告诉我为什么和解决方案我可以通过日语字符读取文件名
答案 0 :(得分:0)
尝试使用 require()代替:
var dataWelcome = require("./ももたろう.json");
//output the data to see if it works
console.log(JSON.stringify(dataWelcome));
的 Live Demo 强>