如何设置input file值

在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事件。

阅读 9k
1 个回答

是这样的你不能直接把input值设置为null,您可以每次上传完成后把input type设置为"text"然后在设为"file"
如:
this.$refs.file.setAttribute('type', 'text');
this.$refs.file.setAttribute('type', 'file');
这样就完美的解决了~~

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题