我有
var users1 = require('./users');
当我尝试使用此行编译文件时:我收到错误:
undefined:2
�tobi�: {
^
SyntaxError: Unexpected token �
at Object.parse (native)
at Object..json (module.js:471:25)
at Module.load (module.js:353:31)
at Function._load (module.js:311:12)
at Module.require (module.js:359:17)
at require (module.js:375:17)
at Object.<anonymous> (C:\node\XXXXXXX)
at Module._compile (module.js:446:26)
at Object..js (module.js:464:10)
at Module.load (module.js:353:31)
我真的不明白那条线的问题是什么。它是一个带有 json 主体的文件名 users.jason
user.json 的内容是:
{
“tobi”: {
“password”: “xxxxxx”
}
}
它应该是.json(或)json吗?