Bạn đang tìm kiếm Gói FSCollection
và GridFS
Bộ điều hợp lưu trữ.
để bắt đầu, hãy chạy phần này trên bảng điều khiển.
meteor add cfs:standard-packages
meteor add cfs:gridfs
bây giờ với fsCollection, bạn có thể tải lên các tệp một cách đơn giản.
Đầu tiên
Khai báo Bộ sưu tập.
AudioCollection = new FS.Collection("AudioCollection", {
stores: [new FS.Store.GridFS("AudioCollection")]
});
Tạo Event handler
đơn giản .
Template.example.events({
'click #example':function(e,t){
//Simple Event to upload files into mongo.
}
})
Và thực hiện helper
đơn giản
Template.example.helpers({
showAudio:function(){
return AudioCollection.find();
}
})
Với HTML này
{{each showAudio}}
{{#if isAudio}}
<!-- show whatever you want here -->
{{/if}}
{{/each}}
Vì README trống tại thời điểm này, tôi đã tạo một mẫu DEMO .