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


    后台交互

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

    小程序提供的网络访问API

    wx.request接口

    发起 HTTPS 网络请求。

    使用rqeust接口前的工作

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

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

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

    测试效果

    视图代码

    <!--index.wxml-->
    <scroll-view class="container">
      <view class='btn'>
        <button type='success' bindtap='getwxstore'>获取微信公众平台HTML</button>
      </view>
      <view class='content'>
        <textarea value='{{html}}' auto-height  maxlength='0' style='100%'></textarea>
      </view>
    </scroll-view>
    

      

    样式代码

    /**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
            });
          }
        })
      }
    })
    

      



    本博客文章未经许可,禁止转载和商业用途!

    如有疑问,请联系: 2083967667@qq.com


  • 相关阅读:
    js开发笔记
    安全相关开发笔记
    常用.NET库使用总结
    Windows使用总结
    .NET Web开发笔记
    Unity插件使用总结
    WinForm开发笔记
    C#开发笔记
    iTunes使用总结
    Mac使用总结
  • 原文地址:https://www.cnblogs.com/rask/p/9775046.html
Copyright © 2020-2023  润新知