gpt4 book ai didi

typescript - Vue TypeScript 项目中事件的类型是什么?

转载 作者:行者123 更新时间:2023-12-03 16:39:19 26 4
gpt4 key购买 nike

在uploadImage 函数参数中,'e' 的正确类型是什么?

public uploadImage(e /* :type of e */){
const image = e.target.files[0];
const reader = new FileReader();
reader.readAsDataURL(image);
reader.onload = e =>{
this.previewImage = e.target.result;
console.log(this.previewImage);
};
}

在模板中我有这个
<input type="file" accept="image/jpeg" @change=uploadImage>

最佳答案

类型只是 Event .相关信息在e.target属性(property)。

关于typescript - Vue TypeScript 项目中事件的类型是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55140448/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com