摘要: Math.random()的取值范围是: 0<=Math.random()<1 随机小数 Math.floor(X) =X的整数位例如Math.floor(6.999) 6Math.floor(39.001) 39Math.floor(8) 8 阅读全文
posted @ 2019-10-19 18:42 在学习编程的lsy呀 阅读(3303) 评论(0) 推荐(0) 编辑
摘要: wxml: js: 阅读全文
posted @ 2019-10-19 17:07 在学习编程的lsy呀 阅读(3045) 评论(0) 推荐(0) 编辑
摘要: console.log(time) 输出:qwertyuiop console.log(time.substring(0, 5)) 输出:qwert 阅读全文
posted @ 2019-10-04 17:30 在学习编程的lsy呀 阅读(2738) 评论(0) 推荐(0) 编辑
摘要: <view wx:if="{{a}}">单个条件</view><view wx:if="{{a || b}}">多个或条件</view><view wx:if="{{a && b}}">多个且条件</view> wx:if else 的判断 <view wx:if="{{a>5}}">6</view 阅读全文
posted @ 2019-10-03 20:55 在学习编程的lsy呀 阅读(7969) 评论(0) 推荐(0) 编辑
摘要: 提示用户 效果: <toast hidden="{{onOff}}" duration="1000" bindchange="clickTap" >默认</toast> btnclick:function(){ wx.showToast({ title:'成功', icon:'success', d 阅读全文
posted @ 2019-10-03 10:18 在学习编程的lsy呀 阅读(1275) 评论(1) 推荐(0) 编辑
摘要: 在点击事件函数所在的view 添加属性 data-id="{{item._id}}" 即可 阅读全文
posted @ 2019-10-02 09:51 在学习编程的lsy呀 阅读(6567) 评论(0) 推荐(0) 编辑
摘要: 发送方 let data = event.currentTarget.dataset.id(要发送的参数) wx.navigateTo({ url: '../iteminfo/iteminfo?id=' + encodeURI(JSON.stringify(data)), }) //encodeUR 阅读全文
posted @ 2019-10-01 21:06 在学习编程的lsy呀 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1、WePY 腾讯官方开源的小程序组件化开发框架,目前有1.4w+Star ,一直在更新着,社区活跃,掉坑能快速的找到方法爬出来。 特性类Vue开发风格支持自定义组件开发支持引入NPM包支持Promise支持ES2015+特性,如Async Functions支持多种编译器,Less/Sass/St 阅读全文
posted @ 2019-09-27 21:21 在学习编程的lsy呀 阅读(834) 评论(0) 推荐(0) 编辑
摘要: var timestamp = Date.parse(new Date()); timestamp = timestamp / 1000; //获取当前时间 var n = timestamp * 1000; var date = new Date(n); //年 var Y = date.getF 阅读全文
posted @ 2019-09-27 21:14 在学习编程的lsy呀 阅读(6007) 评论(0) 推荐(1) 编辑
摘要: var printPrice = "item["+i+"].price"; this.setData({ [printPrice]: newvalue }); 阅读全文
posted @ 2019-09-27 09:46 在学习编程的lsy呀 阅读(539) 评论(0) 推荐(0) 编辑