meteor-autoform-file icon indicating copy to clipboard operation
meteor-autoform-file copied to clipboard

How to use in Meteor 1.3?

Open thearabbit opened this issue 9 years ago • 1 comments
trafficstars

How to use in Meteor 1.3? Could example?

thearabbit avatar May 26 '16 08:05 thearabbit

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

thearabbit avatar May 26 '16 09:05 thearabbit