admin管理员组文章数量:1345730
I need to know the JSON file usage in Meteor JS. First where the JSON file store in Meteor Folder Structure and How to get JSON Data using Meteor JS and is it JSON file save using the extension .JSON?. I didn't get any idea about this. Can you please give me suggestions about JSON files or is there any best references for understanding JSON files in Meteor.
I need to know the JSON file usage in Meteor JS. First where the JSON file store in Meteor Folder Structure and How to get JSON Data using Meteor JS and is it JSON file save using the extension .JSON?. I didn't get any idea about this. Can you please give me suggestions about JSON files or is there any best references for understanding JSON files in Meteor.
Share Improve this question edited Feb 25, 2014 at 4:23 user229044♦ 240k41 gold badges344 silver badges346 bronze badges asked Feb 25, 2014 at 4:12 VenkatVenkat 84116 silver badges31 bronze badges 01 Answer
Reset to default 11If you want to read JSON data, you can use the assets api. You can do the following test in any project:
1) Create a file called private/test.json
with the following contents:
[{"id":1,"text":"foo"},{"id":2,"text":"bar"}]
2) Read the file contents when the server starts (server/start.js
):
Meteor.startup(function() {
console.log(JSON.parse(Assets.getText('test.json')));
});
Here we are using getText
to read the contents of the file (it assumes the file is located in the private
directory). Then we are passing the JSON string contents to parse
which will return an object.
Note that the file extension (.json) does not matter, however it is conventional to use it.
本文标签: javascriptHow to Use User JSON file in MeteorStack Overflow
版权声明:本文标题:javascript - How to Use User JSON file in Meteor? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743808408a2542607.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论