小程序08 小程序访问服务器API

后台交互

小程序是前端框架,需要和后台交互,本次课程主要介绍网络API。

 

小程序提供的网络访问API

小程序08 小程序访问服务器API_第1张图片

 

wx.request接口

发起 HTTPS 网络请求。

 

使用rqeust接口前的工作

1.小程序需要到后台设置合法请求域名(一般用于正式发布)

小程序08 小程序访问服务器API_第2张图片

 

2.关闭开发工具中的url检测(开发环境设置)

关闭url检查后可以访问http://localhost

小程序08 小程序访问服务器API_第3张图片

 

测试效果

小程序08 小程序访问服务器API_第4张图片

 

视图代码



  
    
  
  
    
  

  

样式代码

/**index.wxss**/
.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20rpx 20rpx;
  box-sizing: border-box;
} 

.btn{
  margin-bottom: 20rpx;
}

.content{
  height: 100%;
}

  

逻辑代码

//index.js
Page({
  data: {
    html: ''
  },
  getwxstore: function() {
    var self = this;
    wx.request({
      url: 'https://mp.weixin.qq.com',
      data: {},
      header: {
        "content-type": "application/json"
      },
      success:function(res){
        console.log(res);
        self.setData({
          html:res.data
        });
      }
    })
  }
})

  

转载于:https://www.cnblogs.com/rask/p/9775046.html

你可能感兴趣的:(小程序08 小程序访问服务器API)