0

无法解析文件中的此 JSON:

{
  "facebook": {
    appId: "myAppId",
    appSecret: "myAppSecret"
  }
}

当我使用这个时:

{
  "facebook:appId": "myAppId",
  "facebook:appSecret": "myAppSecret"
}

...以下都返回空...

var objFb = nconf.get("facebook");

var appId = nconf.get("facebook:appId");

如何在文件中的某些 JSON 中添加命名空间?

4

1 回答 1

3

只需创建有效的 JSON?

{
  "facebook": {
    "appId": "myAppId",
    "appSecret": "myAppSecret"
  }
}

键必须是字符串

于 2014-12-11T17:51:06.170 回答