摘要: //向vue页面传值 //步骤1: // 现在js文件中规定调用的后台接口查询车辆状态详细 export function listCar(query) { return request({ url: '/mqtts/start/liststat', method: 'get', params: q 阅读全文
posted @ 2024-05-21 11:32 爱豆技术部 阅读(0) 评论(0) 推荐(0) 编辑
摘要: // 申明一个前端的变量 let showguiji = ref([]); //应用 <el-button class="dropbtnMean" :icon="ArrowLeft" @click="map">地图模式</el-button> <el-button class="dropbtnMea 阅读全文
posted @ 2024-05-17 16:34 爱豆技术部 阅读(3) 评论(0) 推荐(0) 编辑
摘要: // vue页面的操作 // vue页面中引入组件;组件放入components文件夹中 import pension from "@/components/CarWenShidu/echart.vue"; import pensionshidu from "@/components/CarWenS 阅读全文
posted @ 2024-05-10 13:55 爱豆技术部 阅读(26) 评论(0) 推荐(0) 编辑
摘要: // 判断 redis中键值 key 是否存在; Boolean carWeizi_redis_service = redisService.hasKey("carWeizi_redis_service"); if (carWeizi_redis_service){ // 获取对应的 list数组 阅读全文
posted @ 2024-04-29 11:13 爱豆技术部 阅读(2) 评论(0) 推荐(0) 编辑
摘要: //引入pom <!--mqtt--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-integration</artifactId> </dependency> <d 阅读全文
posted @ 2024-04-22 14:30 爱豆技术部 阅读(11) 评论(0) 推荐(0) 编辑
摘要: import java.util.Arrays; import java.util.List; import java.util.function.IntBinaryOperator; List<String> names = Arrays.asList("Alice", "Bob", "Charl 阅读全文
posted @ 2024-04-22 09:43 爱豆技术部 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Mysql中索引的描述设计 1,索引是占用存储空间的2,my_myisam.myi和account.ibd存放索引3,查询效率提高,增删改效率降低;索引表以查询为主 索引结构 二叉树结构 一个根节点下只能有两个节点,当子节点比根节点小在左侧,当比根节点大在二叉树右侧缺点:大数据量时,检索慢,如果都比 阅读全文
posted @ 2024-01-31 18:09 爱豆技术部 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Mysql中存储引擎InnoDB,MyISAM,MEMORY比较 show ENGINES-- 查看数据库支持的搜索引擎ENGINE=InnoDB--使用的 InnoDB 引擎 CREATE TABLE `user1` ( `id` bigint(20) NOT NULL DEFAULT '0', 阅读全文
posted @ 2024-01-31 16:55 爱豆技术部 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Mysql中对数据库进行用户管理 -- 创建用户,密码 可以在任意主机访问CREATE user 'herma' @'%' IDENTIFIED by '123456' -- 修改用户密码ALTER user 'herma'@'%' IDENTIFIED with mysql_native_pass 阅读全文
posted @ 2024-01-31 15:37 爱豆技术部 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 存储过程的创建使用 ​-- 复制 world.`user`所在库的表,复制名为 user1CREATE TABLE user1 as SELECT * from world.`user`DELETE from user1​-- 存储过程delimiter $CREATE PROCEDURE sele 阅读全文
posted @ 2024-01-30 17:47 爱豆技术部 阅读(4) 评论(0) 推荐(0) 编辑
TOP