root 2 years ago
parent
commit
a14ab37707
1 changed files with 1 additions and 1 deletions
  1. 1 1
      node/message.js

+ 1 - 1
node/message.js

@@ -1807,7 +1807,7 @@ us.getMindNetwork = function (response, docid, pageid, userid) {
             function (ret) {
                 console.log(ret[0][0]);
                 if (ret) {
-                    us.mindNetwork[docid].content = json.parse(ret[0][0].data); //把思维网格的内容转化成数组
+                    us.mindNetwork[docid].content = JSON.parse(ret[0][0].data); //把思维网格的内容转化成数组
                     response.end(ret); //返回文档内容
                 }
                 else {