微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – ionic2 – 仅当用户在Toast中单击“关闭”时才创建函数

我用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不会谈论它…

谢谢 :)

解决方法

编辑:

试试这个:

toast.ondismiss((data,role) => {    
        console.log('dismissed toast');
        if (role== "close") {
           this.items.splice(index,item); //put back the item on right place
        }
    });

编辑:为了清晰起见重命名参数

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐