Element 上传组件 使用jsx渲染时 如何绑定事件

问题

在使用JSX的时候,发现上传组件的事件一直绑定不了
方式一

<el-upload
    class='avatar-uploader'
    action='http://localhost:9501/upload'
    {...{
      onChange: () => {
        alert()
      },
      onSuccess: () => {
        alert()
      }
    }}
</el-upload>

方式二

<el-upload
    class='avatar-uploader'
    action='http://localhost:9501/upload'
    onChange={() => {}}
    onError={() => {}}
</el-upload>

预览

点击查看

阅读 4.5k
1 个回答

Vue文档
Element源码

<el-upload
    class='avatar-uploader'
    action='http://localhost:9501/upload'
    {...{
      props: {
        'on-change': () => {}
      }
    }}
</el-upload>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏