1
次のように、uidと共にデータベースに名前をプッシュします。私は同じ時間に別の場所にそのuidを保存したいと思います。どうすればこれを達成できますか? Imはionic 3、angularfire2を使用しています。firebase uidを複数の場所にプッシュする - Angularfire2 Ionic 3
addName() {
let prompt = this.alertCtrl.create({
title: 'Name of user',
message: "Enter a name for this new user",
inputs: [
{
name: 'Name',
placeholder: 'Username'
},
],
buttons: [
{
text: 'Cancel',
handler: data => {
console.log('Cancel clicked');
}
},
{
text: 'Save',
handler: data => {
this.users.push({
title: data.Name,
});
this.posts.push({
title: data.Name
});
}
}
]
});
prompt.present();
}
事前
私が必要としていたとおりです。申し訳ありませんが、私はプッシュIDまたはあなたが述べた一意のIDを参照していました。再度、感謝します! – MacD