我用ionic2创建了一个toast(angular2 with
javascript,而不是typescript),用户从列表中删除了一个项目.
到目前为止一切都很好,现在我想在吐司中添加一个按钮撤消(替换关闭撤消)将其放回列表并同时解除吐司.
我的代码到目前为止:
archiveItem(item) { let toast = Toast.create({ message: 'Item archived.',duration: 2000,showCloseButton: true,closeButtonText: 'Undo',dismissOnPageChange: true,}); var index = this.items.indexOf(item); this.items.splice(index,1); //remove the item toast.ondismiss(() => { console.log('dismissed toast'); this.items.splice(index,item); //put back the item on right place }); this.nav.present(toast); }
当我单击撤消时,该项目返回到列表,问题是,如果我不单击它,它也会返回到列表.
我想我需要为Undo创建另一个函数,但我不知道该怎么做,Ionic2 DOCS不会谈论它…
谢谢 :)