在Vue中使用input file进行文件上传,删除文件时同时情况file值,设置为null,但是就会引起报错,报错信息为:
"InvalidStateError: Failed to set the 'value' property on 'HTMLInputElement': This input element accepts a filename, which may only be programmatically set to the empty string."
有大佬知道如何解决这个问题么?因为现在遇到的问题是,删除值之后可能用户还是提交同一个文件,则不会再次触发file 的change事件。
是这样的你不能直接把input值设置为null,您可以每次上传完成后把input type设置为"text"然后在设为"file"
如:
this.$refs.file.setAttribute('type', 'text');
this.$refs.file.setAttribute('type', 'file');
这样就完美的解决了~~