这是来自我的离子应用程序的代码,我试图将用户添加到firebase数据库节点,这适用于chrome没有任何问题,但不在设备上,我在promise push.then()中添加了警报,并且错误,都没有解雇,
import {
AngularFire,
FirebaseListObservable,
} from 'angularfire2';
export class LoginPage {
users: FirebaseListObservable<any[]>;
user:any{
email: string,
first: string,
last: string,
password: string
}
constructor(public af: AngularFire) {
this.users = this.af.database.list('/data/users');
}
signUp(cred) {
this.users.push(this.user).then(() => {
console.log('done')
})
}
在设备上运行时调用signUp()时没有任何反应,但在chrome上运行良好,