I just use Filepicker to upload the picture. After I uploaded the picture I can get the url in the console.
Template.uploadform.events
'change #upload_widget': (evt) ->
if console?
console.log JSON.stringify(evt.fpfile)
Now I need to show that images to my web application by those url. I am just a new bie on meteor. I am using jade-handlebars and coffeescript in my application. Pleas help me out how can I show the images by using that url in my application ???
Thank You in advance.!!!