微信小程序---发送网络请求

2022/2/20 12:26:47

本文主要是介绍微信小程序---发送网络请求,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1. 微信开发者工具设置(跨域设置)

 

 

 2.html

<view class="code">
  <input type="text" bindinput="bindCode" placeholder="输入验证码" />
    <text bindtap="get_code">点我获取验证码</text>
  </view>

3. js

data: {
    phone: "",
    code: "",
  },

// 双向绑定验证码
  bindCode: function (e) {
    this.setData({
      code: e.detail.value
    })
  },
  // 获取验证码
  get_code: function () {
    var phone = this.data.phone
    // 前端校验1 手机号长度是否为11位
    if (phone.length != 11) {
      console.log(phone.length)
      wx.showToast({
        title: '手机号长度不对',
        icon: 'error',
        duration: 1500
      })
      return
    }
    // 前端校验2 手机号是否符合格式
    var rag = /^1[3-9][0-9]{9}$/
    if (!rag.test(phone)) {
      wx.showToast({
        title: '手机号格式不对',
        icon: 'error',
        duration: 1500
      })
      return
    }
    wx.request({
      url: 'http://127.0.0.1:8030/api/sms/code/',
      method: "POST",
      data: {
        phone: phone,
        tpl: "login",
      },
      success: (res) => {
        if (res.data.status === 200) {
          wx.showToast({
            title: '验证码已发送',
            icon: 'success',
            duration: 1500
          })
          return
        } else {
          wx.showToast({
            title: '请求失败',
            icon: 'error',
            duration: 1500
          })
          return
        }
      },
    })
  },



这篇关于微信小程序---发送网络请求的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程