Ionic(Angular 2)を使用していますが、ダイアログプロミスで関数leaveGroup(group)にアクセスできないため、次のコードは動作していないようです。角度2 /イオンアクセスクラス関数
leaveGroupTapped(event, group) {
this.dialogs.confirm("Are you sure you want to leave this group?", "Confirm")
.then(function (index) {
if (index == 0) {
//dialog dismissed - do nothing
} else if (index == 1) {
//OK call next function to remove the group
this.leaveGroup(group) //does not work ofcourse
} else {
//Cancel
}
});
}
leaveGroup(group) {
//Do some stuff here
}
この作品をどのように作成しますか?
ここおかげ
はい、範囲が台無しにされましたが、それを修正する方法を知りませんでした気持ちを持っていました。答えとしてあなたを受け入れます。 – lordvlad30
お手伝いします:) – Abrar