遍历nodejs中的外部json文件

时间:2018-07-16 01:08:11

标签: html json node.js express

我必须使用“ 1”键的值填充html select下拉列表。我如何遍历元素并获取其值?以及如何在html select下拉列表上显示值?

我的外部json文件如下:

{
  "columns": [
    "A",
    "B",
    "C"
   ],
  "rows": [
    { "1": "abc",
      "2": "def",
    },
    { "1": "ghi",
      "2": "jkl"
    }
   ]
}

我的nodejs文件如下:

var contents = fs.readFileSync("api_response_sample.json");
var jsonContent = JSON.parse(contents);

0 个答案:

没有答案