min*_*inc 2 javascript jquery dropzone.js
我已应用以下设置:
acceptedFiles: "image/jpeg, image/jpg, image/png, image/gif",
Run Code Online (Sandbox Code Playgroud)
它不排除其他文件,但不会自动删除缩略图,我也想删除缩略图。
目前,dropzone 对未接受的文件给出以下错误: You can't upload files of this type.
我不想显示该消息并简单地从放置区域中删除该缩略图。
任何人都可以让我知道,我怎样才能达到同样的目标?
尝试这个:
init: function() {
this.on("addedfile", function (file) {
var _this = this;
if ($.inArray(file.type, ['image/jpeg', 'image/jpg', 'image/png', 'image/gif']) == -1) {
_this.removeFile(file);
}
});
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1682 次 |
| 最近记录: |