我使用 handlebars.js 作为我的模板引擎和 jQuery 文件上传,当我上传一个文件时,它在屏幕上闪烁然后完全消失,它甚至没有隐藏在 dom 中。
我的 JavaScript:
$('#photo-uploader').fileupload({
acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i,
autoUpload: true,
maxFileSize: 5000000,
url: '/member/property/ajaxUpload',
filesContainer: $('.files'),
uploadTemplateId: null,
uploadTemplate: function(o) {
var rows = $();
$.each(o.files, function(index, file) {
var source = $('#photo-upload').html();
var template = Handlebars.compile(source);
var data = {o: o, file: file};
var template = template(data);
var row = $(template);
rows = rows.add(row);
});
return rows;
}
});
车把模板:
<script id="photo-upload" type="text/x-handlebars-template">
<li class="template-upload upload-thumbs img-thumb">
<span class="preview"></span>
<a href="#" class="delete-image">Delete</a>
<a href="#" class="view-image">View</a>
<h3>Title <em>Click to edit</em></h3>
</li>
</script>
如果我用示例中的方法替换 uploadTemplate 方法,则对象中唯一不同的是标签。
https://github.com/blueimp/jQuery-File-Upload/wiki/Template-Engine