2015-10-05 143 views
1

你好,我想知道有没有办法使用afqucikfield上传视频。我已经做到了。它适用于图像,但它并不适用于视频使用afquickfield上传视频

{{#if afFieldValueIs name='articleType' value='video' }} 
         <!-- <p>hello</p> --> 
         <!-- <input type="button" value="videoId"> --> 
         {{> afQuickField name="videoId"}} 
        {{/if}} 

有人可以告诉我,我究竟做错了,我应该如何上传视频。由于

更新

我存储在S3

+0

这可能是有用的https://github.com/aldeed/meteor-cfs-autoform –

回答

1

我想通了,我在做什么错的所有文件。我正在使用FS集合,我只允许它用于图像。我需要做的是让它的影片喜欢这个

Videos = new FS.Collection("videos", { 
    stores: [imageStore], 
    filter: { 
    allow: { 
     contentTypes: ['video/*'] //allow only video in this FS.Collection 
    } 
    } 
});