10

我需要创建一个 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"}}
4

4 回答 4

14

我完成了一个完整的例子来展示这一点

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 个文件

于 2012-12-18T14:06:30.623 回答
10

编辑(2015.06):刚刚创建了一个基于组件的新解决方案。此解决方案提供了一个带有预览和删除图标的上传按钮。PS这些fa类是字体真棒

组件车把

<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]);
        }
    },
});
于 2013-11-26T22:56:21.607 回答
1

Marek Fajkus,您不能使用 JQuery 的 .serialize,它在 JQuery UI 文档的文档中没有提到文件上传

但是,您可以使用JQuery Upload Plugin

实际上它确实提到了它,它说:“来自文件选择元素的数据未序列化。”

于 2015-05-25T09:47:46.647 回答
1

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

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

这是您将在普通 HTML 上传中使用的解决方案。

此外,您可以使用'valueBinding'which 将允许您针对组件中的该值设置观察者。

于 2017-07-18T09:07:16.537 回答