微信小程序学习笔记之函数定义、页面渲染图文详解
(编辑:jimmy 日期: 2024/11/5 浏览:3 次 )
前面一篇介绍了微信小程序目录结构、基本配置。这里再来介绍一下函数定义、页面渲染。
小程序逻辑app.js:定义App函数用来注册一个小程序,包含全局数据和函数,指定小程序的生命周期回调等。整个小程序只有一个 App 实例,全部页面共享使用。
//app.js App({ onLaunch: function () { // 展示本地存储能力 var logs = wx.getStorageSync('logs') || [] logs.unshift(Date.now()) wx.setStorageSync('logs', logs) // 登录 wx.login({ success: res => { // 发送 res.code 到后台换取 openId, sessionKey, unionId } }) // 获取用户信息 wx.getSetting({ success: res => { if (res.authSetting['scope.userInfo']) { // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框 wx.getUserInfo({ success: res => { // 可以将 res 发送给后台解码出 unionId this.globalData.userInfo = res.userInfo // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回 // 所以此处加入 callback 以防止这种情况 if (this.userInfoReadyCallback) { this.userInfoReadyCallback(res) } } }) } } }) }, globalData: { userInfo: null } })
生命周期函数:
Object
参数中,用 this
可以访问
页面js:
页面js中定义分享函数,定义之后右上角菜单才可以分享:
Page({ onShareAppMessage: function (res) { if (res.from === 'button') { // 来自页面内转发按钮 console.log(res.target) } return { title: '自定义转发标题', path: '/page/user"htmlcode">var AppInstance = getApp() console.log(AppInstance.globalData)工具栏utils.js:存放常用的工具函数,例如日期格式化、时间格式化函数。定义后通过module.exports注册,在其他页面才可以使用。
练习:做出如下图页面及样式
weather.js:
Page({ data: { temp:"4℃", low:"-1℃", high:"10℃", type:"晴", city:"北京", week:"星期四", weather:"无持续风行 微风级" } })weather.wxml:
<view class="content"> <view class="today"> <view class="info"> <view class="temp">{{temp}}</view> <view class='lowhigh'>{{low}}</view> <view class='type'>{{type}}</view> <view class='city'>{{city}}</view> <view class='week'>{{week}}</view> <view class='weather'>{{weather}}</view> </view> </view> </view>weather.wxss:
.content{ font-family: 微软雅黑,宋体; font-size:14px; background-size: cover; height: 100%; width: 100%; color: #333333; } .today{ padding-top: 70rpx; height: 50%; } .temp{ font-size: 80px; text-align: center; } .city{ font-size:20px; text-align: center; margin-top: 20rpx; margin-right: 10rpx; } .lowhigh{ font-size: 12px; text-align: center; margin-top: 30rpx; } .type{ font-size: 16px; text-align: center; margin-top: 30rpx; } .week{ font-size: 12px; text-align: center; margin-top: 30rpx; } .weather{ font-size: 12px; text-align: center; margin-top: 20rpx; }数据绑定:
<!--wxml--> <view> {{message}} </view>page.js:
Page({ data: { message: 'Hello MINA!' } })列表渲染:
<!--wxml--> <view wx:for="{{array}}"> {{item}} </view>page.js
Page({ data: { array: [1, 2, 3, 4, 5] } })条件渲染:
<!--wxml--> <view wx:if="{{view == 'WEBVIEW'}}"> WEBVIEW </view> <view wx:elif="{{view == 'APP'}}"> APP </view> <view wx:else="{{view == 'MINA'}}"> MINA </view>// page.js Page({ data: { view: 'MINA' } })模板:
<!--wxml--> <template name="staffName"> <view> FirstName: {{firstName}}, LastName: {{lastName}} </view> </template> <template is="staffName" data="{{...staffA}}"></template> <template is="staffName" data="{{...staffB}}"></template> <template is="staffName" data="{{...staffC}}"></template>// page.js Page({ data: { staffA: {firstName: 'Hulk', lastName: 'Hu'}, staffB: {firstName: 'Shang', lastName: 'You'}, staffC: {firstName: 'Gideon', lastName: 'Lin'} } })事件:
<view bindtap="add"> {{count}} </view>Page({ data: { count: 1 }, add: function(e) { this.setData({ count: this.data.count + 1 }) } })希望本文所述对大家微信小程序设计有所帮助。
下一篇:JavaScript刷新页面的几种方法总结