yoshikazu0110
@yoshikazu0110 (h y)

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

firebase realtimedatabase datasnapshot の プロパティを取得したい

解決したいこと

firebase の datasnapshot

console.log(data.val());
の結果以下のようなデータが取れているのですが、
age
name
プロパティを参照して値をとる方法がわかりません。

image.png

データ構造はこんな感じです。
image.png

メソッドの全体像は以下のような感じです。

Get(shema: string, segment: string, key: string) {
    var path: string = `/${shema}/${segment}/${key}`;
    try {
      var datas = ref(this.database,path);
      onValue(datas, (data) => {
        console.log(data.val());
        //test1 = Object.values(data)[0];
        //test2 = Object.values(data)[1];
        
      });
    }
    catch (e: any)  {
      this.retModel.error = e.message;
      //return this.retModel;
    }
  }

よろしくお願いします。

0

1Answer

Your answer might help someone💌