我正在开发Ionic 3应用程序,我正在尝试将我的应用程序连接到firebase数据库。但它一直告诉我这个:
function checkParm1(parm1){
^^^^^^^
SyntaxError: Unexpected identifier
我正在尝试将数据添加到我的数据库中,这一切都出错了,这是我的打字稿代码:
Type 'AngularFireList<{}>' is not assignable to type 'FirebaseListObservable<any>'.
Property '$ref' is missing in type 'AngularFireList<{}>'.
(property) AddEmployeePage.employeesList: FirebaseListObservable<any>
答案 0 :(得分:3)
我认为你需要的是
employeesList: AngularFireList<any>;
而不是
employeesList: FirebaseListObservable<any>;
基于给定here
的示例