[参考资料](https://www.cnblogs.com/youhong/p/7221080.html?utm_source=itdadao&utm_medium=referral) [参考资料2](https://github.com/ant-design/ant-design/issues/2813) ```js beforeUpload(file) { const reader = new FileReader() reader.readAsText(file) reader.onload = function() { console.log('-------- 文件内容', this.result) // 后续处理 } return true } ```
参考资料
参考资料2