修改 upload 组件表单域的顺序

pull/1147/head
Jack 2022-10-12 13:59:10 +08:00
parent e08932d935
commit fea4c75650
1 changed files with 3 additions and 2 deletions

View File

@ -194,14 +194,15 @@ layui.define('layer' , function(exports){
layui.each(items, function(index, file){
var formData = new FormData();
formData.append(options.field, file);
//追加额外的参数
layui.each(options.data, function(key, value){
value = typeof value === 'function' ? value() : value;
formData.append(key, value);
});
//最后添加 file 到表单域
formData.append(options.field, file);
//提交文件
var opts = {
url: options.url