概述
在使用input标签上传文件时,如果选择相同文件名不会更新file内容,这时候就需要在选择文件时先清空原来的文件,vue可以使用下述方法清空文件内容
操作
<input type="file" ref="pathClear" @change="onUpload" name="file" id="file">
<script>
methods: {
onUpload(){
this.$refs.pathClear.value =''
}
}
</script>
在使用input标签上传文件时,如果选择相同文件名不会更新file内容,这时候就需要在选择文件时先清空原来的文件,vue可以使用下述方法清空文件内容
<input type="file" ref="pathClear" @change="onUpload" name="file" id="file">
<script>
methods: {
onUpload(){
this.$refs.pathClear.value =''
}
}
</script>
评论区