2021年9月16日
摘要: 此处为效果:https://blog.csdn.net/gmw1226/article/details/120329703 此处为语法: # 一级标题 ## 二级标题 ### 三级标题 #### 四级标题 ##### 五级标题 ###### 六级标题 # 列表 ## 无序列表 - 列表内容 1 * 阅读全文
posted @ 2021-09-16 15:30 巍MG 阅读(37) 评论(0) 推荐(0) 编辑
  2021年7月16日
摘要: 前提:A为组件项目,B为引入组件示例项目 示例项目运行结果: TODO:正式发布npm包 https://www.cnblogs.com/zlp-blog/p/10718383.html 阅读全文
posted @ 2021-07-16 17:06 巍MG 阅读(175) 评论(0) 推荐(0) 编辑
  2021年7月9日
摘要: for循环里面可以用闭包来解决问题。 for(var i = 0; i < 10; i++){ setTimeout(()=>console.log(i),0) } // 控制台输出10遍10. for(var i = 0; i < 10; i++){ (function(a){ setTimeou 阅读全文
posted @ 2021-07-09 16:25 巍MG 阅读(12) 评论(0) 推荐(0) 编辑
  2021年7月8日
摘要: 对象转数组:Array.from() 求数组最大最小值:Math.max(...arr); Math.min(...arr); 多个变量赋值: const [ age, name, sex ] = str.split(‘,’); // str="20,小明,男"; 阅读全文
posted @ 2021-07-08 16:38 巍MG 阅读(26) 评论(0) 推荐(0) 编辑
摘要: const arr = [1,[2,3],[4,5]] const flatArr = [].concat(...arr) console.log(flatArr)//[1, 2, 3, 4, 5] ps:concat还可用于数组复制,并且复制后的数组变化不会影响原数组; var arr = [1, 阅读全文
posted @ 2021-07-08 16:16 巍MG 阅读(56) 评论(0) 推荐(0) 编辑
摘要: var numbers = [3, 5, 7, 2]; var sum = numbers.reduce((x, y) => x + y); console.log(sum); // returns 17 reduce方法有两个参数,第一个是回调函数callback,用于处理数据,可以自定义一个fu 阅读全文
posted @ 2021-07-08 15:23 巍MG 阅读(107) 评论(0) 推荐(0) 编辑
  2021年7月1日
摘要: weex项目在构建时每个页面都要单独打一个js ,非常非常非常耗时!!! 试了网上说的那个html包,没用,还是巨慢。 后来get到了同事教我的一个绝招, 把pages目录下跟自己做的不相关的页面先全部删掉,怕不小心提交影响远程代码的话可以copy一个工程出来,等改好了挪过来在提交。 只是pages 阅读全文
posted @ 2021-07-01 10:52 巍MG 阅读(131) 评论(0) 推荐(0) 编辑
摘要: parseInt 是取整,从左边取到小数点截止,也就是向下取整; toFixed(0)是四舍五入,所以如果在想取整的场合下用会出现五入的问题。 阅读全文
posted @ 2021-07-01 09:18 巍MG 阅读(754) 评论(0) 推荐(0) 编辑
  2021年6月4日
摘要: VSCode 配置uni-app的方法_javascript技巧_脚本之家 (jb51.net) 阅读全文
posted @ 2021-06-04 10:49 巍MG 阅读(256) 评论(0) 推荐(0) 编辑
  2021年6月2日
摘要: import { createApp } from 'vue' import App from './App.vue' import router from './router' import store from './store' import api from "./api/http"; co 阅读全文
posted @ 2021-06-02 08:54 巍MG 阅读(1031) 评论(0) 推荐(0) 编辑