Reputation: 528
I have a requirement where I need to upload a file onto server using Ember.JS and similar download a file from server.
Please guide me on the necessary code for this.
I am a newbie with this Framework.
Thanks
Upvotes: 0
Views: 1992
Reputation: 47367
Ember doesn't upload/download files, it's a client side mvc framework. You'll need to use ajax calls for these.
I would suggest using Jquery's ajax library.
Upvotes: 0