You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/upload/demo/defaultFileList.md

1.1 KiB

#### 已上传的文件列表 使用 `defaultFileList` 设置已上传的内容。 #### Default Files Use `defaultFileList` for uploaded files when page init.
<template>
  <a-upload action="//jsonplaceholder.typicode.com/posts/" :defaultFileList="defaultFileList">
    <a-button>
      <a-icon type="upload" /> Upload
    </a-button>
  </a-upload>
</template>
<script>
export default {
  data () {
    return {
      defaultFileList: [{
        uid: 1,
        name: 'xxx.png',
        status: 'done',
        reponse: 'Server Error 500', // custom error message to show
        url: 'http://www.baidu.com/xxx.png',
      }, {
        uid: 2,
        name: 'yyy.png',
        status: 'done',
        url: 'http://www.baidu.com/yyy.png',
      }, {
        uid: 3,
        name: 'zzz.png',
        status: 'error',
        reponse: 'Server Error 500', // custom error message to show
        url: 'http://www.baidu.com/zzz.png',
      }],
    }
  },
  methods: {
    handleChange({file, fileList}) {
      if (file.status !== 'uploading') {
        console.log(file, fileList);
      }
    },
  },
}
</script>