不要着急,不要着急,

休息,休息一会。

上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: 文章 console.log('1'); setTimeout(function() { console.log('2'); process.nextTick(function() { console.log('3'); }) new Promise(function(resolve) { cons 阅读全文
posted @ 2020-12-07 09:34 angle-xiu 阅读(96) 评论(0) 推荐(0)
摘要: note4 使用web-view组件 第一种情况:个人及海外小程序就不必折腾,官方暂时不支持。 第二种情况:需要配置业务域名 可以参考该文章 阅读全文
posted @ 2020-11-27 14:24 angle-xiu 阅读(283) 评论(0) 推荐(0)
摘要: 布局时遇到的一些问题 通过定位元素来控制按钮切换时由于对应的modal未添加导致状态未及时修改 + 若元素盒子模型均为border-box,子元素添加row类会出现padding重叠,需将子元素的row类去掉 + 关闭余额预警时按钮无响应,经排查发现绑定的函数出错。 + ko绑定时当显示使用Numb 阅读全文
posted @ 2020-11-26 16:59 angle-xiu 阅读(118) 评论(0) 推荐(0)
摘要: 常用的方法封装 $('document').ready(function () { $.extend({ /*Function sendAjax * @param: obj Object * obj.url 地址必填 * obj.modelData 数据选填 */ sendAjax: functio 阅读全文
posted @ 2020-11-25 08:52 angle-xiu 阅读(324) 评论(0) 推荐(0)
摘要: note3 tarBar没有出现 一般是由于没有将首页的路径添加到配置tab栏的list列表中。 首页路径即放在pages配置的第一行。 将其添加进list列表就行。 阅读全文
posted @ 2020-11-24 10:35 angle-xiu 阅读(171) 评论(0) 推荐(0)
摘要: 单例模式 了解什么是模块 ``` function CoolModule() { var something = "cool"; var another = [1, 2, 3]; function doSomething() { console.log( something ); } functio 阅读全文
posted @ 2020-11-23 16:55 angle-xiu 阅读(137) 评论(0) 推荐(0)
摘要: ![](https://img2020.cnblogs.com/blog/1604953/202011/1604953-20201119083602569-827914737.png) ![](https://img2020.cnblogs.com/blog/1604953/202011/1604953-20201119083619616-206338338.png) ![](https://im 阅读全文
posted @ 2020-11-23 08:30 angle-xiu 阅读(64) 评论(0) 推荐(0)
摘要: note2 小程序import 和 include的区别 import import 有作用域的概念,即只会 import 目标文件中定义的 template,而不会 import 目标文件 import 的 template。 如:C import B,B import A,在C中可以使用B定义的 阅读全文
posted @ 2020-11-22 17:16 angle-xiu 阅读(721) 评论(0) 推荐(0)
摘要: note1 上传部署云函数显示依赖未安装,解决方法:选择安装依赖的那个选项。 阅读全文
posted @ 2020-11-21 19:17 angle-xiu 阅读(349) 评论(0) 推荐(0)
摘要: 作用域 - note1(《你不知道的JavaScript》笔记,这个书写的很有趣,可以看看) 程序var a = 2 处理时发生了啥 了解将要参与到对程序 var a = 2; 进行处理的过程中的演员们。 引擎 从头到尾负责整个 JavaScript 程序的编译及执行过程。 编译器 引擎的好朋友之一 阅读全文
posted @ 2020-11-20 10:02 angle-xiu 阅读(275) 评论(0) 推荐(1)
上一页 1 2 3 4 5 6 7 ··· 11 下一页
Live2D