赞
踩
const height = wx.getSystemInfoSync().windowHeight
const width = wx.getSystemInfoSync().windowWidth
const rpxtopx = width / 750 //rpx转px系数
//示例
const px=10*rpxtppx //10rpx转px
const globalData = app.globalData
wx.setNavigationBarTitle({
title: '标题'
})
wx.navigateTo({
url: '../path/path'
})
wx.switchTab({
url: '../path/path'
})
//借助onUnload
onUnload() {
wx.navigateTo({
url: '../path/path'
})
},
应用场景:
try{
wx.setStorageSync('key', data)//存储data
wx.getStorageSync('key')//获取data
wx.removeStorageSync('key')//移除data
}catch(e){
console.log(e)
}
try{
const res = wx.getStorageInfoSync()//所有存储信息
const keys= res.keys//所有记录key值
const data=[]
//获取所有记录至data
keys.forEach((value,index)=>{
data.push(wx.getStorageSync(value))
})
}catch(e){
console.log(e)
}
//-->util/request.js //云开发数据库 const db = wx.cloud.database() // 获取所有数据,table表名,param查询where条件 const getAllData = async (table, param)=>{ // 先取出集合记录总数 const countResult = await db.collection(table).where(param).count() console.log(countResult) const total = countResult.total // 计算需分几次取 const batchTimes = Math.ceil(total / 20) // 承载所有读操作的 promise 的数组 const tasks = [] for (let i = 0; i < batchTimes; i++) { const promise = db.collection(table).where(param).skip(i * 20).limit(20).get() tasks.push(promise) } // 等待所有 return (await Promise.all(tasks)).reduce((acc, cur) => { return { total: total, //总数 data: acc.data.concat(cur.data), //所有数据 errMsg: acc.errMsg } }) } module.exports = { getAllData }
<view class="userinfo">
<open-data type="userAvatarUrl" class="userinfo-avatar"></open-data>
<open-data type="userNickName" class="userinfo-nickname"></open-data>
</view>
在miniprogram
文件夹下,也即pages
同级建立resource
目录
<image src="/resource/icon_test2.png" mode="scaleToFill"></image>
一定要设置具体的高度,可借助页面高度wx.getSystemInfoSync().windowHeight
具体计算
<scroll-view class=".text" scroll-y="true" style="height:{{scrollheight}};"></scroll-view>
<radio-group class="ans" bindchange="changeValue">
<view class="radio left">
<radio checked="{{current.a===a}}" value="{{current.a}}"></radio>
</view>
<view class="radio right">
<radio checked="{{current.b===b}}" value="{{current.b}}"></radio>
</view>
</radio-group>
/* 未选中时样式 */ /* radio .wx-radio-input --> radio外形*/ .ans .radio radio .wx-radio-input { /* visibility: hidden; */ width: 100rpx; height: 100rpx; line-height: 100rpx; border-radius: 50rpx; text-align: center; box-sizing: border-box; } /* radio .wx-radio-input::before --> radio文字*/ .ans .left radio .wx-radio-input::before { /*单选框内文字内容*/ content: "√"; color: #5BBAB7; font-size: 40rpx; } .ans .right radio .wx-radio-input::before { content: "×"; color: #ee9377; font-size: 40rpx; } /* 选中后样式,注意加!important */ radio .wx-radio-input.wx-radio-input-checked { background-color: cornsilk !important; box-sizing: border-box !important; border: none !important; } radio .wx-radio-input.wx-radio-input-checked::before { font-size: 40rpx !important; }
<radio-group class="ans" bindchange="changeValue">
<view class="radio left">
<label style="background-color:{{current.a==='a'?'cornsilk':'white'}}"><radio checked="{{current.a==='a'}}" value="a"></radio>{{current.text_a}}</label>
</view>
<view class="radio right">
<label style="background-color:{{current.b==='b'?'cornsilk':'white'}}"><radio checked="{{current.b==='b'}}" value="b"></radio>{{current.text_b}}</label>
</view>
</radio-group>
/* 自定义label样式 */
.ans .radio label {
...
}
/* 未选中时样式 */
/* radio .wx-radio-input --> 隐藏radio*/
.ans .radio radio .wx-radio-input {
visibility: hidden;
width: 0rpx;
height: 0rpx;
}
设置css,使用\n
<text style="white-space:pre-wrap">\n</text>
- 若表单数据非常多,通过value绑定清除会非常麻烦
- 找不到代码调用form的reset的接口
form
使用bindreset
事件提交数据,而不使用bindsubmit
事件,这样点击提交后会自动清空表单内容
但是这样会带来一个新问题:使用bindreset
无法从事件参数e.detail.value.name获得表单数据
因此需要在表单绑定事件获取内容
<input bindinput="inputText"/>
inputText: function(e) {
this.data.quesText=e.detail.value
}
<image>得使用data-src绑定路径,这样e.currentTarget.dataset.src的值才不为undefined
通过bindInput
事件和setData
方法
<input bindinput="inputText" value="{{text}}"/>
inputText: function(e) {
this.setData({
text: e.detail.value,
})
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。