记录在写项目过程中代码简化优化的过程,希望自己慢慢写出更高质量更简洁的代码
1
复制代码
1
2
3
4const arr = this.arr.filter((a) => { return a.name.indexOf(this.findValue) === -1? null : a })
复制代码
1
2
3
4
5const arr = this.arr.filter((a) => { return a.name.indexOf(this.findValue) !== -1 })
2
三个按钮通过key值来控制降序、排序、原序:我一开始设置key是1升2降序3原序
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14if (this.key === 0) { console.log('00000000') arr.sort(function(a, b) { return a.number - b.number }) } else if (this.key === 1) { arr.sort(function(a, b) { return b.number - a.number }) } else if (this.key === 2) { arr = this.arr } return arr
改进:可以设置原序的key值为0
复制代码
1
2
3
4
5
6
7if (this.key) { arr.sort((a, b) => { return this.key === 1 ? a.number - b.number : b.number - a.number }) } return arr
3
从数组中返回偶数
复制代码
1
2
3
4
5
6
7
8
9const arr = [1, 2, 3, 4, 5, 6] const res = arr.filter(function(item) { if (item % 2 === 0) { return true } else { return false } })
改进
复制代码
1
2
3const arr = [1, 2, 3, 4, 5, 6] const res = arr.filter(item => item % 2 === 0)
4
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13function connect(options) { let host = options.host; let username = options.username; let password = options.password; let port = options.port; } connect({ host: 'xx.com', username: 'root', password: 'root', port: 3306 })
改进:解构赋值+函数参数默认值
复制代码
1
2
3
4
5
6
7
8
9
10function connect({ host, username, password, port = 8080 }) { console.log(port) } connect({ host: 'xx.com', username: 'root', password: 'root', // port: 3306 })
5
复制代码
1
2
3
4
5
6
7
8handleCheck(id){ this.todos.forEach(element => { if( element.id === id ){ element.status=!element.status } }); }
改进
复制代码
1
2
3
4this.todos.forEach(element => { if( element.id === id )element.status=!element.status });
最后
以上就是和谐太阳最近收集整理的关于简洁的代码12345的全部内容,更多相关简洁内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复