17

.json在快速获取文件并在视图中显示时遇到问题。请分享你的例子。

4

3 回答 3

32
var fs = require("fs"),
    json;

function readJsonFileSync(filepath, encoding){

    if (typeof (encoding) == 'undefined'){
        encoding = 'utf8';
    }
    var file = fs.readFileSync(filepath, encoding);
    return JSON.parse(file);
}

function getConfig(file){

    var filepath = __dirname + '/' + file;
    return readJsonFileSync(filepath);
}

//assume that config.json is in application root

json = getConfig('config.json');
于 2012-10-31T19:50:39.573 回答
28

在你的控制器中做这样的事情。

获取json文件的内容:

ES5 var foo = require('./path/to/your/file.json');

ES6 import foo from './path/to/your/file.json'

要将json发送到您的视图:

function getJson(req, res, next){
    res.send(foo);
}

这应该通过请求将json内容发送到您的视图。

笔记

根据BTMPL

虽然这会起作用,但请注意 require 调用会被缓存,并且会在每个后续调用中返回相同的对象。您在服务器运行时对 .json 文件所做的任何更改都不会反映在服务器的后续响应中。

于 2016-03-16T09:19:04.077 回答
14

这个对我有用。使用 fs 模块:

var fs = require('fs');

function readJSONFile(filename, callback) {
  fs.readFile(filename, function (err, data) {
    if(err) {
      callback(err);
      return;
    }
    try {
      callback(null, JSON.parse(data));
    } catch(exception) {
      callback(exception);
    }
  });
}

用法:

readJSONFile('../../data.json', function (err, json) {
  if(err) { throw err; }
  console.log(json);
});

资源

于 2013-12-13T06:58:32.063 回答