form-create icon indicating copy to clipboard operation
form-create copied to clipboard

upload组件 props对象中的listType 默认为 picture-card,更改为text 后,上传成功后 fileList中不显示文件名

Open thpngj opened this issue 3 years ago • 3 comments

版本号 (version) 
@form-create/ant-design-vue  3.x

问题描述 (Issue) upload组件 props对象中的listType 默认为 picture-card,更改为text 后,上传成功后 fileList中不显示文件名 1668679699862

#复现步骤/生成规则 (Duplicate steps/generate rules) rule : { type: 'upload', title: field.fieldName, field: field.fieldCode, value: [], props: { limit: extJson.data || 1, type: extJson.controlType, listType: extJson.controlType === 'pic' ? 'picture-card' : 'text', headers: headers, accept: accept, action: sysConfig.API_URL + '/dev/file/uploadLocalReturnUrl', // 上传成功回调函数 onSuccess: function (file) { console.log(file) if (file.response.result) { file.url = file.response.result } } }, children: extJson.controlType === 'pic' ? [] : [{ type: 'a-button', props: { type: 'dashed', block: true }, children: ['点击上传'] }] }

期望的结果 (Desired outcome) listType:'text' 的时候 上传成功后显示的 列表 能够显示 文件名

thpngj avatar Nov 17 '22 10:11 thpngj

感谢反馈,我这边检查一下

xaboy avatar Nov 22 '22 10:11 xaboy

版本号 (version) 
@form-create/ant-design-vue  3.x

问题描述 (Issue) upload组件 props对象中的listType 默认为 picture-card,更改为text 后,上传成功后 fileList中不显示文件名 1668679699862

#复现步骤/生成规则 (Duplicate steps/generate rules) rule : { type: 'upload', title: field.fieldName, field: field.fieldCode, value: [], props: { limit: extJson.data || 1, type: extJson.controlType, listType: extJson.controlType === 'pic' ? 'picture-card' : 'text', headers: headers, accept: accept, action: sysConfig.API_URL + '/dev/file/uploadLocalReturnUrl', // 上传成功回调函数 onSuccess: function (file) { console.log(file) if (file.response.result) { file.url = file.response.result } } }, children: extJson.controlType === 'pic' ? [] : [{ type: 'a-button', props: { type: 'dashed', block: true }, children: ['点击上传'] }] }

期望的结果 (Desired outcome) listType:'text' 的时候 上传成功后显示的 列表 能够显示 文件名

onSuccess 的第一个参数是response 吧。第二个参数才是file, 要把第二个参数的url设置为要展示的name。 http://www.form-create.com/v3/guide/component/upload.html

Xuechengqi avatar Feb 27 '23 02:02 Xuechengqi

这个文件名回显还没解决啊

xintao522 avatar Sep 18 '23 07:09 xintao522