美文网首页
微信小程序开发时接口请求

微信小程序开发时接口请求

作者: _皓月__ | 来源:发表于2019-12-06 15:16 被阅读0次

    没有配置服务器域名时

    设置-->项目设置-->不校验合法域名、web-view(业务域名)、TLS版本以及HTTPS证书


    项目设置
    wx.request({
      url: 'http://localhost:8686/api/auth/manager/login',
      method: 'POST',
      header: {
         'Content-Type': 'application/json'
      },
      data: {
        'loginName': 'admin',
        'passport': '12345678'
      },
      success: function(res) {
        console.log(res) // 服务器回包信息
      },
      fail: function(err) {
        console.log(err) // 接口调用失败的回调函数
      },
      complete: function(res) {
        console.log(res) // 接口调用结束的回调函数(调用成功、失败都会执行)
      }
    })
    

    相关文章

      网友评论

          本文标题:微信小程序开发时接口请求

          本文链接:https://www.haomeiwen.com/subject/pzlegctx.html