vue コンボ API を使用してアップロードしようとしています。アップロードが正常に動作しているときに、リセット ボタンをクリックしたときにリセットしたいのですが、構成 API の $refs.file または this.$refs.file にアクセスできません。
$refs.file
this.$refs.file
あなたがしなければならないことは、最初に getCurrentInstance コンポーネントを含める必要があります。 const instance = getCurrentInstance();次に、 instance.refs.file.value = null を行う必要があります。要約すると、コンポーネントは次のようになります。
getCurrentInstance
const instance = getCurrentInstance();
instance.refs.file.value = null
あなたがしなければならないことは、最初に
リーリーgetCurrentInstance
コンポーネントを含める必要があります。const instance = getCurrentInstance();
次に、instance.refs.file.value = null
を行う必要があります。要約すると、コンポーネントは次のようになります。