- 博客(12)
- 收藏
- 关注
原创 filter过滤数组符合条件的数量
var a= 数组.filter(function (x, y) { return x.属性 == true }).length;
2021-01-05 14:28:51 478
原创 vue-cli学习
一 vue.config.jsmodule.exports = { publicPath: BASE_URL //部署路径 比如之前上线的mix app-h5 outputDir:XX //当运行 vue-cli-service build 时生成的生产环境构建文件的目录。默认是dist文件 assetsDir:XX //放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录。默认'' indexPath:XX //
2020-11-03 10:13:13 129
转载 Vue.js中引入图片路径的几种方式
https://blog.csdn.net/sunhonghui9527/article/details/107188395/
2020-10-26 09:51:20 224
原创 Promise.all遍历接口
newsList:[188, 187, 190, 191, 192, 193, 194, 189, 195, 196, 198]mounted() { this.init(); this.action() },//開始 action(){ let promiseArr = this.newsList.map((item) => { return this.getInfo(item) })
2020-09-15 09:42:10 709
原创 项目小结——接口日志和年度编制
记录一下项目中所用到的一些比较方便的函数1.判断是否为整数Number.isInteger(Number(XXXXXX))2.filter函数var arr = [1, 2, 3, 4, 5,4, 6]var newArr = arr.filter(item => item>4) // newArr : [5, 6]const myorgid = res.data.data.filter(org => { return this.manageOrgIdList.s
2020-09-10 14:24:07 130
原创 前端常用插件
记录一下平常工作中常用插件1.pl-table表格插件https://developer.aliyun.com/mirror/npm/package/pl-table2.moment时间规范插件http://momentjs.cn/3.Swiper滑动特效插件https://www.swiper.com.cn/4.animate.csshttps://animate.style/...
2020-08-26 10:48:41 105
原创 filter数组内部去重
let searchmeet = [ {name:'绿茶',height:168,age:18}, {name:'红茶',height:170,age:18}, {name:'绿茶',height:165,age:20}]let searchmeet2 = searchmeet.reverse().filter((item, index) => { let _index = searchmeet.findIndex(_item => { re
2020-08-22 10:00:10 111
原创 项目小结——文章发布后台
文章发布后台小结决定开始对每个大小项目进行总结 有利于知识的巩固很长一段时间没有做pc页面,借着这次项目回忆一下以前所学所用elementui 的一些组件问题1.FormItem表单中的限制提示<FormItem label="导语" prop="Introduction">ruleValidate: { Introduction: [ {
2020-07-27 17:08:02 131
原创 给数组添加属性
给元素添加属性[‘a’,‘b’] [{title:‘a’},{title:‘b’}]let n=[]; res.data.data.forEach(item=>{ var obj={};var str1 = 'title'; obj[str1] = item; n.push(obj)}) ```
2020-07-23 21:53:38 946
原创 js关于树形结构的总结
常用方法总结1.将排列数组封装成父子结构的树形结构let k = this.parentorchild(res.data.data, 1);//data是数组,id是父级的idparentorchild(data, id) { const result = []; let temp = []; for (let i = 0; i < data.length; ...
2020-03-24 14:16:50 458
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人