我在使用从我的 firebase 数据库获得的对象时遇到问题。我可以毫无问题地接收 json 文件,如下图所示。 https://i.gyazo.com/6c1c69aca47f92a4e1029bb019042ab2.png
<h1>{{ item | async | json}}</h1>
上面的代码在 /src/app/app.component.html ,
这从 /src/app/app.component.ts 接收项目对象
import { Component } from '@angular/core';
import { AngularFire, FirebaseObjectObservable } from 'angularfire2';
@Component({
moduleId: module.id,
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.css']
})
export class AppComponent {
item: FirebaseObjectObservable<any>;
constructor(af: AngularFire) {
this.item = af.database.object('/releases/');
}
}
我也尝试过使用 item.name.$value 但它不起作用。我想获取 json 文件中的值。并且能够在网站上使用它们。