Frank · 2小时前
使用 Ionic 2,我尝试检索和显示 firebase 数据图像底部显示的 newGoalWt、newMaxReps、newMinReps、repsToday 和 wtToday 失败。我不想检索其他数据。 我以为我多次找到了答案,但我没有。 我不是想让别人做我应该做的工作,但我是编码新手,在这一点上需要帮助。如果您有其他课程通过示例涵盖此内容,请告诉我。 示例数据库
我希望这是有道理的/很清楚的。
第一件事是创建一个获取详细信息的提供程序。所以在提供程序中会有一个这样的函数:
public getRequiredObject(objectKey : String){
return this.database.object('wideGripBPTwo-list/'+ objectKey)
}
然后在控制器/打字稿文件中,我将为提供程序的返回值分配一个变量:
this.variableName = this.Provider.getRequiredObject(objectKey);
this.variableName.subscribe(snapshot => {
this.newGoalWt = snapshot.newGoalWt;
this.newMaxReps = snapshot.newMaxReps;
//add other variables here
最后在 html 文件中只需绑定数据:
<ion-label>{{newGoalWt}}</ion-label>
注意 我没有添加整个提供程序、.ts 文件和 html 文件。请告知这是否有意义,以及您是否需要更多帮助。