Skip to content

JS input 上传文件只能上传一次问题解决

Published: at 08:01 PMSuggest Changes

上传文件只能点击一次,再点无效 bug 解决

<input
  ref="imageFileUpload"
  type="file"
  hidden
  @change="onImageFileChanged"
  accept="image/png, image/gif, image/jpeg, image/bmp, image/x-icon"
  style="display: none"
/>
const imageFileUpload = ref<any>();
// 上传完成后记得清除一下 value
imageFileUpload.value.value = '';

Previous Post
Vue 子组件如何获取所有父组件传递的值
Next Post
JS 创建 video 元素