Ember.js:上传文件组件

8oomwypt  于 2022-11-05  发布在  其他
关注(0)|答案(4)|浏览(176)

我需要创建一个Ember组件来选择文件。我的页面将包括多个“上传组件”
我读过一篇文章试图实现这一点:(https://stackoverflow.com/questions/9200000/file-upload-with-ember-data)但是UploadFileView直接链接到控制器。我想有更通用的东西...
我希望从视图中删除App.StoreCardController.set('logoFile '..')依赖项或从模板中传递字段(logoFile)...
有什么想法来改进这段代码吗?

App.UploadFileView = Ember.TextField.extend({
    type: 'file',
    attributeBindings: ['name'],
    change: function(evt) {
      var self = this;
      var input = evt.target;
      if (input.files && input.files[0]) {
        App.StoreCardController.set('logoFile', input.files[0]);
      }
    }
});

和模板:

{{view App.UploadFileView name="icon_image"}}
{{view App.UploadFileView name="logo_image"}}
57hvy0tb

57hvy0tb1#

我完成了一个完整的示例来演示这一点
https://github.com/toranb/ember-file-upload
这是基本的车把模板

<script type="text/x-handlebars" data-template-name="person">
{{view PersonApp.UploadFileView name="logo" contentBinding="content"}}
{{view PersonApp.UploadFileView name="other" contentBinding="content"}}
<a {{action submitFileUpload content target="parentView"}}>Save</a>
</script>

下面是自定义文件视图对象

PersonApp.UploadFileView = Ember.TextField.extend({
    type: 'file',
    attributeBindings: ['name'],
    change: function(evt) {
      var self = this;
      var input = evt.target;
      if (input.files && input.files[0]) {
        var reader = new FileReader();
        var that = this;
        reader.onload = function(e) {
          var fileToUpload = reader.result;
          self.get('controller').set(self.get('name'), fileToUpload);
        }
        reader.readAsDataURL(input.files[0]);
      }
    }
});

这里是控制器

PersonApp.PersonController = Ember.ObjectController.extend({
  content: null,
  logo: null,
  other: null
});

最后是带有提交事件的视图

PersonApp.PersonView = Ember.View.extend({
  templateName: 'person',
  submitFileUpload: function(event) {
    event.preventDefault();
    var person = PersonApp.Person.createRecord({ username: 'heyo', attachment: this.get('controller').get('logo'), other: this.get('controller').get('other') });
    this.get('controller.target').get('store').commit();
  }
});

如果你启动django应用程序,这将在文件系统上放置2个文件

eit6fx6z

eit6fx6z2#

编辑(2015.06):刚基于组件创建了一个新的解决方案。此解决方案提供了一个带有预览和删除图标的上载按钮。P.S. fa类为Font Awesome

部件把手

<script type="text/x-handlebars" data-template-name='components/avatar-picker'>
        {{#if content}}
            <img src={{content}}/> <a {{action 'remove'}}><i class="fa fa-close"></i></a>
        {{else}}
            <i class="fa fa-picture-o"></i>
        {{/if}}

        {{input-image fdata=content}}
</script>

组件JavaScript

App.AvatarPickerComponent = Ember.Component.extend({
    actions: {
        remove: function() {
            this.set("content", null);
        }
    }
});

App.InputImageComponent = Ember.TextField.extend({
    type: 'file',

    change: function (evt) {
        var input = evt.target;
        if (input.files && input.files[0]) {
            var that = this;

            var reader = new FileReader();
            reader.onload = function (e) {
                var data = e.target.result;
                that.set('fdata', data);
            };
            reader.readAsDataURL(input.files[0]);
        }
    }
});

用法示例

{{avatar-picker content=model.avatar}}

旧答案

我以Chris Meyers为例,把它做得很小。
模板

{{#view Ember.View contentBinding="foto"}}
    {{view App.FotoUp}}
    {{view App.FotoPreview width="200" srcBinding="foto"}}
{{/view}}

JavaScript语言

App.FotoPreview= Ember.View.extend({
    attributeBindings: ['src'],
    tagName: 'img',
});

App.FotoUp= Ember.TextField.extend({
    type: 'file',

    change: function(evt) {
        var input = evt.target;
        if (input.files && input.files[0]) {
            var that = this;

            var reader = new FileReader();
            reader.onload = function(e) {
                var data = e.target.result;
                that.set('parentView.content', data);
            }
            reader.readAsDataURL(input.files[0]);
        }
    },
});
gijlo24d

gijlo24d3#

Marek Fajkus,您不能使用JQuery的.serialize,它在JQuery UI docs的文档中没有提到文件上载
但是,您可以使用JQuery Upload Plugin
实际上它确实提到了这一点,它说:“.来自文件选择元素得数据未序列化.”

b4lqfgs4

b4lqfgs44#

如果要上传多个文件,您可能需要使用

{{input type='file' multiple='true' valueBinding='file'}}
                          ^^^^

这是一个您将在正常HTML上载中使用的解决方案。
此外,您还可以使用'valueBinding',这将允许您针对组件中的该值设置观察器。

相关问题