微信小程序 - 简述

1.小程序理解

基于微信的 免安装 MVVM 应用

编码使用 ES 6

一个页面基本组成:wxml wxss js ( html、css、js )

2. 常见用法 ( 基本就是跟着例子走。。 )

设置值

this.setData({
userInfo: e.detail.userInfo,
hasUserInfo: true
})

ajax

  onLoad: function () {
    var that = this;

    //get
    wx.request({
      url: 'http://localhost:8888/',
      method: "GET",
      header: {
        'Content-Type': 'json'
      },
      data:{name:'ss'},
      success: function (res) {
        //console.log(res); 
        that.setData({
          getData: res.data
        })
      },
      fail: function () {
        console.log("接口调用失败");
      }
    })
}

 

3.开发过程要点:

开发工具、填入小程序注册后的 

 

4.相关链接

小程序简介

常见拒绝情景

小程序后台管理界面

api

 

5. 扩展链接

微信小程序入门教程

微信小程序 欢迎页面的制作

微信小程序 实战小程序实例

微信小程序实例源码大全

小程序架构

 

posted @ 2018-11-27 19:09  justSmile2  阅读(213)  评论(0编辑  收藏  举报