VUE2对话框没弹出来的时候通过ref找不到对话框内部的元素?
<el-dialog :title="title" :visible.sync="open" width="500px" v-dialogDrag append-to-body>
<input type="file" ref="photoFile" accept="image/jpeg,image/jpg,image/png" multiple @change="selectFile($event)"/>
<img ref="preView" style="max-width:80%"/>
....
如题,我想对话框弹出之前,想清空input,img的内容
this.$refs.preView.src ="";
this.$refs.photoFile.value="";
this.$refs里找不到preView,photoFile这个是啥子原理
回复
1个回答
test
2024-07-08
这是因为对话框弹出之前没这个这个DOM, 既然都使用Vue了, 为什么还要操作DOM呢 ,完全可以这么写以img举例, :<img :src="imgSrc" style="max-width:80%"/>
弹出前:this.imgSrc = ''
回复
适合作为回答的
- 经过验证的有效解决办法
- 自己的经验指引,对解决问题有帮助
- 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
- 询问内容细节或回复楼层
- 与题目无关的内容
- “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容