随笔分类 -  小程序

摘要:https://cloud.tencent.com/developer/article/1119129 阅读全文
posted @ 2020-01-17 14:55 ThisCall 阅读(89) 评论(0) 推荐(0) 编辑
摘要:wxml wxss js 阅读全文
posted @ 2020-01-08 11:52 ThisCall 阅读(208) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/12c7307a02c2 下面的更好 阅读全文
posted @ 2020-01-02 16:07 ThisCall 阅读(207) 评论(0) 推荐(0) 编辑
摘要:https://www.90pan.com/o105932&pg=3 阅读全文
posted @ 2019-12-25 10:47 ThisCall 阅读(100) 评论(0) 推荐(0) 编辑
摘要:https://developers.weixin.qq.com/community/develop/doc/000ce0e461ca60cf1bc80c97d51800 https://developers.weixin.qq.com/miniprogram/dev/api/worker/wx.c 阅读全文
posted @ 2019-11-01 11:57 ThisCall 阅读(213) 评论(0) 推荐(0) 编辑
摘要:https://www.jb51.net/article/165354.htm 阅读全文
posted @ 2019-10-31 18:11 ThisCall 阅读(988) 评论(0) 推荐(0) 编辑
摘要:onLoad: function(opt) { let that = this; let n = this.data.n; function nowTime() { n++; console.log(n) if (timer) {} if (n > 5 && timer) { clearInterval(timer); } } var timer = setInterval(nowTime, 20 阅读全文
posted @ 2019-10-24 13:58 ThisCall 阅读(107) 评论(0) 推荐(0) 编辑
摘要:"window": { "navigationBarTextStyle": "black", "navigationBarTitleText": "王力智能生活馆", "navigationBarBackgroundColor": "#fff", "backgroundColor": "#F8F8F8" }, "navigateToMiniProgramAppIdList": [ "wx 阅读全文
posted @ 2019-10-18 10:45 ThisCall 阅读(174) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/huiAlex/p/9463181.html 阅读全文
posted @ 2019-10-09 20:12 ThisCall 阅读(199) 评论(0) 推荐(0) 编辑
摘要:在进行异步请求之前先去小程序后台配置好服务器域名。 get请求:header: { 'content-type':'json'}就可以。 post请求:header: { 'content-type':'application/x-www-form-urlencoded'}, get请求:heade 阅读全文
posted @ 2019-08-21 06:11 ThisCall 阅读(441) 评论(0) 推荐(0) 编辑
摘要:onLaunch: function () { // 展示本地存储能力 var logs = wx.getStorageSync('logs') || [] logs.unshift(Date.now()) wx.setStorageSync('logs', logs) // 登录 wx.login({ success: res ... 阅读全文
posted @ 2019-08-19 10:20 ThisCall 阅读(221) 评论(0) 推荐(0) 编辑
摘要:data:{ img:[], //设置一个数组 } add_img:function(){ var that = this, img = that.data.img; if(img.length < 3){ //如果图片数量小于3张,可以直接获取图片 wx.chooseImage({ count... 阅读全文
posted @ 2019-08-14 14:29 ThisCall 阅读(4253) 评论(0) 推荐(0) 编辑
摘要:一般小程序都在这样的,只有单页面,没有小程序默认顶部导航的小程序,才不用抖动 阅读全文
posted @ 2019-05-23 13:50 ThisCall 阅读(157) 评论(0) 推荐(0) 编辑
摘要:fixed,absolute定位 rpx 不好 px,vh ,100%有百分比是好的,只针对与top和bottom padding只有textarea在Ios和and机识别不一样 荣耀对rpx支持有偏差,如用rpx尽量用相对小的数据top或bottom 主要注意嵌套子父级问题,可以减少屏幕比例高度不 阅读全文
posted @ 2019-05-16 16:45 ThisCall 阅读(495) 评论(0) 推荐(0) 编辑
摘要:不渲染然的尽量不用setData 阅读全文
posted @ 2019-05-06 14:20 ThisCall 阅读(109) 评论(0) 推荐(0) 编辑
摘要:如果加在函数上,可以用函数直接调用,如果是加在原型对象时,那就的创建新对象,才能使用,最重要的是影响继承 直接加在函数上的,不能被新对象继承 阅读全文
posted @ 2019-04-29 14:00 ThisCall 阅读(171) 评论(0) 推荐(0) 编辑
摘要:ctx.drawImage('../../../../page/home/resources/pic/che_logo.png', 10, 435, 50,50); 本地图片要根路径 阅读全文
posted @ 2019-04-29 12:01 ThisCall 阅读(2042) 评论(0) 推荐(0) 编辑
摘要:对onPageScroll中的setData赋值次数进行节流 https://www.jianshu.com/p/b835527a792e(没看完) onPageScroll: function (e) { console.log(e); let arrHeight = this.data.arrH 阅读全文
posted @ 2019-04-26 18:01 ThisCall 阅读(186) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/zishang91/p/8507485.html(copy 第一种 <!-- 正常商品列表 --> <view class='goods-list flexw'> <block wx:key="list" wx:for="{{list}}"> <view 阅读全文
posted @ 2019-04-26 17:46 ThisCall 阅读(230) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/rolan1993/article/details/88106343 在做一个小球跟随手指移动的效果时候,由于在touchmove事件中频繁调用setData改变小球的位移实现,在开发工具和IOS平台还算流畅,但在安卓机下手机预览出现极其卡顿的交互,简直是 阅读全文
posted @ 2019-04-25 10:25 ThisCall 阅读(565) 评论(0) 推荐(0) 编辑