Open ckinmind opened 5 years ago
参考资料 参考资料2
beforeUpload(file) { const reader = new FileReader() reader.readAsText(file) reader.onload = function() { console.log('-------- 文件内容', this.result) // 后续处理 } return true }
参考资料 参考资料2