आप FSCollection Package
की तलाश कर रहे हैं। , और GridFS
भंडारण अनुकूलक।
आरंभ करने के लिए इसे कंसोल पर चलाएं।
meteor add cfs:standard-packages
meteor add cfs:gridfs
अब fsCollection के साथ आप फाइल को सरल तरीके से अपलोड कर सकते हैं।
पहले
संग्रह की घोषणा करें।
AudioCollection = new FS.Collection("AudioCollection", {
stores: [new FS.Store.GridFS("AudioCollection")]
});
एक आसान Event handler
बनाएं ।
Template.example.events({
'click #example':function(e,t){
//Simple Event to upload files into mongo.
}
})
और एक साधारण helper
करें
Template.example.helpers({
showAudio:function(){
return AudioCollection.find();
}
})
इसके साथ HTML
{{each showAudio}}
{{#if isAudio}}
<!-- show whatever you want here -->
{{/if}}
{{/each}}
चूंकि README इस समय खाली है, इसलिए मैंने एक नमूना बनाया है DEMO ।