第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何以角度從 Firebase 存儲中讀取文本文件

如何以角度從 Firebase 存儲中讀取文本文件

婷婷同學(xué)_ 2022-10-21 14:21:10
我在 Firebase 存儲中上傳文本文件并將一些數(shù)據(jù)存儲在 Firebase 實時數(shù)據(jù)庫中。做上述事情沒有問題。此外,我能夠獲取 firestorage 中存在的所有文件以及文本文件的 URL。 但我無法讀取文本文件中的內(nèi)容。我正在使用下面的代碼來獲取數(shù)據(jù)在調(diào)用以下代碼之前,我在 init 中調(diào)用 getfileDetails() 方法將所有數(shù)據(jù)存儲在 fileDetailList 中 this.uploadService.fileDetailList.snapshotChanges().subscribe(      list => {        console.log("before fileListDetails= ");        this.fileListDetails = list.map((item) => {          return item.payload.val();        });        console.log("fileListDetails= " + JSON.stringify(this.fileListDetails)); //logs attached below        this.FileDetailsList = this.fileListDetails;        this.FileDetailsList.forEach((item) => {          console.log("item= " + item.imgUrl);                   // to get the text from file          this.http.get<string>(item.imgUrl).subscribe(            (item11)=>{              console.log("file read= "+item11); //getting error Here                          }          );        });      }    );我的 uploadService.ts 方法fileDetailList:AngularFireList<any>;constructor(private firebase:AngularFireDatabase) { }  getfileDetails()  {    console.log("getfileDetails");    this.fileDetailList=this.firebase.list('FileDetails');  }日志詳細信息fileListDetails= [{"caption":"nkn,","category":"hello.txt","imgUrl":"https://firebasestorage.googleapis.com/...."}]當我直接在瀏覽器中點擊 imgUrl 時,我能夠獲取文本
查看完整描述

1 回答

?
慕村9548890

TA貢獻1884條經(jīng)驗 獲得超4個贊

您需要告訴 http 客戶端您期望的是純文本響應(yīng),而不是默認的 JSON

請注意,當指定responseTypeJSON 以外的值時,您不需要像this.http.get<MyType>已經(jīng)指定的那樣提供通用參數(shù)。

this.http.get(item.imgUrl, {responseType: "text"}).subscribe(...)

參考: https ://angular.io/guide/http#requesting-data-from-a-server


查看完整回答
反對 回復(fù) 2022-10-21
  • 1 回答
  • 0 關(guān)注
  • 127 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號