wxml相关
wxml小数取整
写法:小数|Int
跨页面传参
<navigator style="display: content;" url="../webviewPage/webviewPage?webview={
{
item.liUrl}}"></navigator>
onLoad: function (options) {
this.setData({
webview:options.webview
})
},
显示层向逻辑层传值
通过id向函数里传值
<view class="list_item-right" id="{
{
item.mtId}}" bindtap="delete" >删除</view>
delete:function(event){
console.log(event.currentTarget.id)
},
按屏幕比例设置宽高
用vh(高),vw(宽) 相当于屏幕的百分比
CSS相关
fixed居中
.footer{
position: fixed;
top: 90vh;
display: block;
margin: 0 auto;
width: 100%;
}
消息推送
需求:订阅长期消息通知。
解决方式:1.在首页js的onload里写一个提示框,提示框的success里调用 wx.requestSubscribeMessage请求订阅。
onLoad: function (opti