我的代码实时返回一个值:
import { Injectable } from '@angular/core';
import { AngularFireDatabase } from '@angular/fire/database';
import { Usuario } from '../modelos/usuario';
import { UsuarioClass } from './../modelos/usuario-class.model';
@Injectable({
providedIn: 'root'
})
export class UsuarioService {
keyUsuario: string;
usuLogin: UsuarioClass;
constructor(
private dbFireDatabase: AngularFireDatabase) {
}
getAuthenticateUser(
strLogin: string,
strPassword: string,
intEstadoActivo: number) {
var strKey : string = "";
var objUsu : UsuarioClass = null;
var query = this.dbFireDatabase.database.ref("TableUser").orderByKey();
query.on('value', function(snapshot) {
snapshot.forEach(function(childSnapshot) {
objUsu = <UsuarioClass>childSnapshot.val();
if ((objUsu.LOGIN.trim() == strLogin.trim()) &&
(objUsu.PASSWORD.trim() == strPassword.trim()) &&
(objUsu.ESTADO == intEstadoActivo)) {
strKey = childSnapshot.key;
return true;
}
});
});
if ((strKey != "") && (strKey != null) && (strKey != undefined)) {
xxxxx //other step.
}
}
}
该代码在函数的第二次调用中运行良好,但在第一次调用中却无效。我尝试使用async
和await
,但我不知道正确的方法。在第一个调用中,strKey为空,但在第二个及以后的调用中,strKey有一个值。
答案 0 :(得分:0)
执行以下操作:
var query = this.dbFireDatabase.database.ref("TableUser").orderByKey();
query.once('value', function(snapshot) {
/*Some code here*/
return someResult;
}
});
});
然后像这样调用此函数:
this.yourService.getAuthenticateUser().then((result)=>{
/* use the result*/
}