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

没有配置服务器域名时

设置-->项目设置-->不校验合法域名、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) // 接口调用结束的回调函数(调用成功、失败都会执行)
  }
})

你可能感兴趣的:(微信小程序开发时接口请求)