码迷,mamicode.com
首页 > 微信 > 详细

微信小程序使用wx.showtoast后面代码不执行

时间:2020-04-10 12:05:30      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:触摸   取数据   UNC   时间   col   code   ima   icon   sea   

if (res.statusCode === 200) {
                wx.showToast({
                    title: ‘保存成功‘,
                })
                console.log(‘保存成功‘)
                console.log(‘重新获取数据‘)
                console.log(res.data.bx_id)
                this.searchBx(res.data.bx_id)
            }

原来代码

this.searchBx(res.data.bx_id)没有执行



修改后:

if (res.statusCode === 200) {
                var that = this
                wx.showToast({
                    title: ‘保存成功‘,
                    success() {
                        console.log(‘保存成功‘)
                        console.log(‘重新获取数据‘)
                        console.log(res.data.bx_id)
                        that.searchBx(res.data.bx_id)
                    }
                })
            }

顺利执行


介绍:

 wx.showToast({
       title:"成功",
       icon: ‘loading...‘,//图标,支持"success"、"loading" 
       image: ‘/images/tan.png‘,//自定义图标的本地路径,image 的优先级高于 icon
       duration: 2000,//提示的延迟时间,单位毫秒,默认:1500 
       mask: false,//是否显示透明蒙层,防止触摸穿透,默认:false 
       success:function(){},
       fail:function(){},
       complete:function(){}
     })
  },

 

微信小程序使用wx.showtoast后面代码不执行

标签:触摸   取数据   UNC   时间   col   code   ima   icon   sea   

原文地址:https://www.cnblogs.com/xia-feng/p/12672372.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!