收藏
回答

小程序内所有Toast真机永远都是一闪而过,各种写法都试过了,怎么解决?

export function showToast(title) {
    // wx.hideLoading();
    setTimeout(() => {
        wx.showToast({
            title: title,
            icon:'none',
            duration:2000,
            mask:true,
            success:function (params) {
                // setTimeout(() => {
                //     wx.hideToast();
                // }, 2500);              
            }
        });
    }, 200);
}
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容