摘要: Math.min() //获取一组数值中的最小值Math.max() //获取一组数值中的最大值 Math.ceil() //将数值中向上舍入为最接近的整数Math.floor() //将数值中向下舍入为最接近的整数Math.round() //将数值中四舍五入为最接近的整数 Math.random 阅读全文
posted @ 2021-03-16 16:43 _houjie 阅读(504) 评论(2) 推荐(0)
摘要: for循环中有两个功能特别相似的循环,分别是 for in 和 for of,接下来看看这两个有什么区别吧 for..in循环出的是key,for...of循环出的是value for..in可以循环对象,for..of用来遍历数组,若for..of循环对象的话,要和Object.keys()搭配使 阅读全文
posted @ 2021-03-16 16:12 _houjie 阅读(522) 评论(0) 推荐(0)
摘要: 在vue项目中使用 bpmn流程图 1、安装插件 cnpm install bpmn-js --save 2、在main.js引入 import 'bpmn-js/dist/assets/diagram-js.css'; import 'bpmn-js/dist/assets/bpmn-font/c 阅读全文
posted @ 2021-03-16 15:56 _houjie 阅读(4080) 评论(0) 推荐(0)