Is there a native support for file upload in Ember?

I am new to Ember.JS and I want to create a way to upload a file to my Ember.JS app.

Is there a native support for uploading files?

there may be an addon for that, but file uploading is not a framework level concern, and file uploading methods vary widely depending on which platforms you are trying to support, but for most modern browsers jQuery.ajax can do it.

Most of the heavy lifting with file uploads is in the back end. The actual front end work is pretty simple nowadays :slight_smile: