微信小程序前端js接口调用

wx.request({
          url: 'test.php', //仅为示例,并非真实的接口地址
          method: "POST",
          header: {
              //传输接收数据的头(!!!)
            'content-type': 'application/x-www-form-urlencoded'
          },
          data: {
            x:'x'
          },

          success: function (res) {
            console.log(res.data)
            if (res.data==1){ 
              that.data.isCode=true
              wx.showToast({
                title: '验证码',
                icon: 'success',
                duration: 2000
              })
            }else{
              wx.showToast({
                title: '验证码错误',
                icon: 'success',
                duration: 2000
              })
            }
          }
        })

发布了34 篇原创文章 · 获赞 5 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/jason_renyu/article/details/79552930