比如在写vue中,element-ui 的上传功能成功后的回调函数会有三个参数
function(response, file, fileList)
如果我想向这个回调函数内传送第四个参数,我需要怎么写?
<el-upload
:action="`${BASE_URL}core/upload-files/photo`"
:on-success="loadupSuccess" // 在这里我需要传一个参数
:multiple="false"
:on-exceed="handleExceed"
:on-remove="handleRemove"
:limit="1">
<el-button size="small" type="primary">点击上传</el-button>
</el-upload>
不胜感激!
:on-success="(...args) => loadupSuccess(...args, '第四个参数?')"
有个提案就是要解决你的需求的,可以了解一下,https://github.com/tc39/propo... 不知道babel有没有插件支持。在没有这个实现之前,用 rest params + spead param 也可以实现。