12 2021 档案

摘要:要求: 页面上动态生成文本框,与后台的数组进行绑定。要求在页面输入数值后,更新到后台的数组中。 实现步骤: 设置文本框的绑定onchange事件,与后台方法进行绑定,在改方法中,使用: this.$set(this.sensorType1, index, ''); 这样做的确可以实现页面控件与后台数 阅读全文
posted @ 2021-12-21 18:09 Shapley 阅读(40) 评论(0) 推荐(0) 编辑
摘要:1.页面传值: 源页面: showScreen(){ let routeData = this.$router.resolve({path:'/company-show',query:{companyId:this.companyId,year:this.year}}); window.open(r 阅读全文
posted @ 2021-12-21 14:54 Shapley 阅读(75) 评论(0) 推荐(0) 编辑
摘要:ES6获取对象数组某个属性最大值: this.cavityNums = Math.max.apply(null, res.data.map(item => item.cavityNum)) ES6获取对象数组某个属性最小值: this.cavityNums = Math.min.apply(null 阅读全文
posted @ 2021-12-21 11:19 Shapley 阅读(966) 评论(0) 推荐(0) 编辑
摘要:问题描述 vue项目编译运行时:(@vue/cli>=4.5,using vue3.0) npm run serve 爆出各种问题(缺少各种组件,安装完后爆出:Duplicate declaration "h"......): Module build failed (from ./node_mod 阅读全文
posted @ 2021-12-15 16:36 Shapley 阅读(1269) 评论(0) 推荐(0) 编辑
摘要:一个父子类型项目启动时,出现奇怪现象:中控台无错误输出,但tomcat无法启动,导致前端访问时出现: localhost:拒绝了我们的连接请求 控制台输出如下: 2021-12-07 11:21:10 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWe 阅读全文
posted @ 2021-12-07 13:44 Shapley 阅读(733) 评论(0) 推荐(0) 编辑
摘要:前言: kafka一些常用命令: cd /opt/module/kafka 查看kafka主题: ./kafka-topics.sh --list --zookeeper localhost:2181 查看主题详情 ./kafka-topics.sh --describe --zookeeper l 阅读全文
posted @ 2021-12-03 15:57 Shapley 阅读(2498) 评论(0) 推荐(0) 编辑