试图解析使用json解析方法但无法解析

时间:2015-04-27 16:38:11

标签: json node.js

include('extras/json2.js');
var top = JSON.parse(topology.txt);

topology.txt位于同一文件夹中,因此没有路径错误。

错误显示:ReferenceError: "topology" is not defined

1 个答案:

答案 0 :(得分:0)

您没有加载文件。使用require加载它:

var top = require('topology.txt')

Node.js应默认解析JSON。