我正在执行创建和读取操作,为此,我在应用程序中使用了FirebaseListObservable。我应该输入什么,我应该在哪里提及。
我尝试更新依赖项,但仍然出现相同的错误
import { Component } from '@angular/core';
import { AngularFireDatabase, FirebaseListObservable } from 'angularfire2/database';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
items: FirebaseListObservable < any[] > ;
msg: string = '';
constructor(public af: AngularFireDatabase) {
this.items = af.list('/messages');
}
send(chatMsg: string) {
this.items.push({
message: chatMsg
});
this.msg = '';
}
}
src / app / app.component.ts(2,31)中的错误:错误TS2305:模块'“ / home / manoj / Desktop / R&D / chatapp / node_modules / angularfire2 / database / index”'没有导出的成员“ FirebaseListObservable”。