微信小程序 - 简述
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.相关链接
5. 扩展链接
Put the favorites in the favorites and empty the favorites.