meteor-autoform-file
meteor-autoform-file copied to clipboard
How to use in Meteor 1.3?
trafficstars
How to use in Meteor 1.3? Could example?
I create Files, Pub, Security via doc in global variable.
I can upload photo in the form, but I can not get url to view photo in <img>
// imports/ui/pages
showTmpl.helpers({
data () {
let data = Item.findOne(this._id);
data.photoUrl = null;
if (data.photo) {
data.photoUrl = Files.findOne(data.photo).url();
}
return data;
}
});
// Show
undefined