当前位置:   article > 正文

Antd Upload 上传文件的使用_antd 文件上传

antd 文件上传

 1.组件使用

  1. <Upload {...goodProps}>
  2. <Button icon={<UploadOutlined />}>点击上传</Button>
  3. </Upload>

2.上传过程

  1. // 货物文件上传
  2. const goodProps = {
  3. name: "file", //上传名字
  4. action: basicIp + "/sys-file/upload", // 上传地址
  5. method: "put", // 上传方法
  6. maxCount: 100, // 页面显示最多条数
  7. headers: {
  8. token: sessionStorage.getItem("token"), // 请求头
  9. checkType: 'ck-token-auth'
  10. },
  11. onChange(info) { // 上传/删除的过程函数
  12. if (info.file.status !== "uploading") { // 正在上传
  13. console.log(info.file, info.fileList);
  14. setGoodsFileId(info.fileList); // 保存文件id
  15. }
  16. if (info.file.status === "done") { // 上传完成
  17. message.success(`${info.file.name} file uploaded successfully`);
  18. } else if (info.file.status === "error") { // 上传失败
  19. message.error(`${info.file.name} file upload failed.`);
  20. }
  21. },
  22. };

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/339096
推荐阅读
相关标签
  

闽ICP备14008679号