修改文件上传

This commit is contained in:
Anyon 2020-01-14 11:33:04 +08:00
parent e791601c00
commit f2d0c7e7d8
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ define(['md5'], function (SparkMD5, allowExtsMimes) {
opt.safe = opt.element.data('safe') || '';
opt.type = opt.element.data('type') || '';
opt.field = opt.element.data('field') || 'file';
opt.input = $('[name="_FIELD_"]'.replace('_FIELD_', opt.field));
opt.input = $('[name="_field_"]'.replace('_field_', opt.field));
opt.uptype = opt.safe ? 'local' : opt.element.attr('data-uptype') || '';
opt.multiple = opt.element.attr('data-multiple') > 0;
/*! 文件的选择筛选 */

View File

@ -157,8 +157,8 @@ $(function () {
$dom.find('[data-file]:not([data-inited])').map(function (index, elem, $this, field) {
$this = $(elem), field = $this.attr('data-field') || 'file';
if (!$this.data('input')) $this.data('input', $('[name="' + field + '"]').get(0));
$this.uploadFile(function (url) {
$($this.data('input')).val(url).trigger('change');
$this.uploadFile(function (url, file) {
$($this.data('input')).data('file', file).val(url).trigger('change');
});
});
};