我在我的angular6项目中使用了def turnleft():
right.ChangeDutyCycle(pwm)
left.ChangeDutyCycle(0)
,但是现在angularfire2
已移至angularfire2
,因此我想更新angularfire
的代码。我要更新的代码是过滤数据库
angularfire
所以我的问题是如何为#angularfire2
# private database: AngularFireDatabase
getProfileWithPhone(phone:string){
return this.database.list('/profiles').map(_profiles => _profiles.filter(profile => profile.phone.number == phone)); }
做以上代码?有人可以帮我吗?
angularfire