Merge branch 'layui:main' into main

pull/1150/head
sunxiaobin89 2022-10-17 09:53:53 +08:00 committed by GitHub
commit d926c85bd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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