1.使用富文本rich-text时,若图片间有间隙,则使用正则给图片样式加块元素
replace(/<img /g,'<img style="display:block;"')
2.ios图片格式不兼容时,替换图片格式
replace(/webp/g,'jpg')
3.防抖的使用
在搜索的时候使用定时器延迟请求,且在每次调用前清空定时器
4.节流的使用
在滚动靠近bottom时刷调用方法时打开节流阀例如isloading=true,在方法里的请求发出且拿到返回的数据后,关闭节流阀
5.页面渲染完毕数据还没请求过来时的解决办法
使用v-if在数据请求回来再渲染页面
6.监听的数据在页面刷新的时候没有调用
immediate:true
7.小程序的mixins
mixins:[]
8.忽略黄色消息提示
"checkSiteMap"=true
9实现按钮登录
open-type="getuserinfo" @getuserinfo="getuserinfo"
10.获取登录query
uni.login()
11.微信支付的流程
1.authorization加token
2.创建订单
3.预支付 (拿到订单支付相关的参数)
4.支付 (uni.requestPayment())