// 上传文件调用
    fileChange(fileData) {
      let raw = file.raw
      let fileParamList

      let reader = new FileReader()
      reader.readAsText(fileData);
      let _this = this
      reader.onload = function (){
        let result = this.result           // 读取的文件数据
      }

    },

 

posted on 2022-11-04 16:47  occc  阅读(111)  评论(0编辑  收藏  举报