我有一个简单的nodejs文件:
const data = require('./gameData.js')
app.get('/search', function (req, res) {
res.header("Content-Type",'application/json');
res.send(JSON.stringify(data));
})
这是gameData.js文件的内容:
{
"systemText":
{
"playGame": "Play game"
}
}
这都是有效的json。
但是,当我运行节点文件时,在"unexpected token :"
上说:"systemText:"
为什么它不像冒号呢?