摘要: let obj = { obj1 :{ say:'hi1' }, obj2 :{ say:'hi2' } } let one = "obj1" let two = "say" // 等于 obj.obj1.say // `` 是ESC下 TAB上的哪个键 console.log( obj[`${on 阅读全文
posted @ 2020-06-22 12:12 letleon 阅读(1073) 评论(0) 推荐(0) 编辑
摘要: 帮你熟悉Flex布局,帮你生成样式 https://flexbox.tech 阅读全文
posted @ 2020-05-29 21:55 letleon 阅读(140) 评论(0) 推荐(1) 编辑
摘要: 广告 -> 使用WinGet安装所有VC++运行库 当在Windows系统中运行某软件后, 提示 因为计算机中丢失MSVCP90.dll , 就说明系统中缺少相应的运行时组件(Runtime)!!! >什么是运行时组件? 使用户能够在未安装 Visual C++ 的计算机上运行使用 Visual C 阅读全文
posted @ 2020-05-25 18:26 letleon 阅读(8367) 评论(0) 推荐(0) 编辑
摘要: 阮一峰的网络日志: http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html 采用Flex布局的元素 称之为Flex容器 它的所有子元素自动成为容器成员 称为 flex item 容器默认存在两根轴 水平的主轴,垂直的交叉轴 容器的属性 fle 阅读全文
posted @ 2020-05-12 16:27 letleon 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 作者:李留白 原文:微信小程序 setData 的坑 遇到的问题: 1 this.setData({ 2 Data[0].name:"喵喵" 3 }) 解决办法: 1 var param = {}; 2 var string = "Data["+变量+"].name; 3 param[string] 阅读全文
posted @ 2020-04-23 17:24 letleon 阅读(4625) 评论(0) 推荐(0) 编辑
摘要: <swiper bindanimationfinish="Functionr" > 1 function:function(e){ 2 this.setData({ 3 swiperCurrent: e.detail.current 4 }) 5 } 将 bindChange 更换为 bindani 阅读全文
posted @ 2020-04-21 14:20 letleon 阅读(774) 评论(0) 推荐(0) 编辑
摘要: <scroll-view bindscrolltolower="YourFunction" lower-threshold="50"></scroll-view> 1 YoourFunction(){ 2 console.log("触底了"); 3 wx.showToast({ 4 title: ' 阅读全文
posted @ 2020-04-21 14:11 letleon 阅读(3484) 评论(0) 推荐(0) 编辑
摘要: app.json "sitemapLocation": "sitemap.json", "style": "v2", 删掉 "style": "v2", 即可使用 css来定义小程序按钮样式了 真是无F可说! 阅读全文
posted @ 2020-04-15 14:35 letleon 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 1 data{ 2 DBID: 'dbname' 3 } 4 getdb(){ 5 db.collection(this.data.DBID).get() 6 .then(res =>{ 7 console.log(res.data) 8 }) 9 } 1 data{ 2 DBID: 'dbname 阅读全文
posted @ 2020-04-14 20:21 letleon 阅读(2093) 评论(0) 推荐(0) 编辑
摘要: 借(抄)鉴(袭)Thor UI 的!!! index.js 1 Page({ 2 data: { 3 banner: [ 4 "http://gw.alicdn.com/tfscom/i2/27574552/TB2LLz8ugJkpuFjSszcXXXfsFXa_!!27574552.jpg", 5 阅读全文
posted @ 2020-04-07 16:40 letleon 阅读(414) 评论(0) 推荐(0) 编辑