微信小程序的用户登录

过程

当你点登录按钮的时候会跳转到teachers的页面上。首先你要发起请求用wx.request,调用接口,得到他的username和password,用wx.setStorage将数据存储在本地缓存中,用wx.redirectTo进行页面的跳转。

登录的页面

微信小程序的用户登录_第1张图片


login.wxml代码


学号: 密码:

login.js代码

formSubmit(e){
    // console.log(e)
    wx.request({
      url: xxx, //仅为示例,并非真实的接口地址
      data: {
        username: e.detail.value.no,
        password: e.detail.value.pwd
      },
      header: {
        'content-type': 'application/json' // 默认值
      },
      success: function (res) {
        console.log(res.data)
        wx.setStorage({
          key: "student",
          data: res.data
        });
        wx.redirectTo({
          url: "../teachers/teachers"
        })
      }
    })
  }

你可能感兴趣的:(微信小程序的用户登录)