上一页 1 2 3 4 5 6 ··· 22 下一页
摘要: //当属于这个分支的报文传入调用processMessage方法 if ((new JSONObject(dataMessage).optString("documentStatus")).equals("carWeizi_redis_service")) { processMessage(data 阅读全文
posted @ 2024-07-11 09:51 爱豆技术部 阅读(48) 评论(0) 推荐(0)
摘要: 第一步:查看默认全局安装路径。 指令:npm config get prefix 我这里路径 npm config get prefix E:\NVM\nvm\node_global 第二步:不存在这个路劲进行更换 npm config set prefix "D:\Develop\nodejs" 阅读全文
posted @ 2024-07-09 16:25 爱豆技术部 阅读(119) 评论(0) 推荐(0)
摘要: nginx部署流程 #在nginx.conf中配置 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log inf 阅读全文
posted @ 2024-07-02 16:00 爱豆技术部 阅读(29) 评论(0) 推荐(0)
摘要: 触发事件 <el-button type="primary" icon="mapLocation" @click="app"> 方法 function app(){ // ttt.value=false; router.push('/lenlian/msg') } 这个路径/lenlian/msg浏 阅读全文
posted @ 2024-06-12 17:13 爱豆技术部 阅读(28) 评论(0) 推荐(0)
摘要: mysql -u root -p SELECT * FROM mysql.user; use mysql; update user set Update_priv ='Y' where user = 'mushudb'; update user set Select_priv ='Y' where 阅读全文
posted @ 2024-06-12 14:11 爱豆技术部 阅读(119) 评论(0) 推荐(0)
摘要: // 假设 ccmdbCarWeizis 是一个包含 CarWeizi 对象的列表 ccmdbCarWeizis.forEach(carWeizi -> { // 提取 CarWeizi 对象的 carInformation 属性的前三个字符作为省份简称 String label = carWeiz 阅读全文
posted @ 2024-06-04 16:58 爱豆技术部 阅读(33) 评论(0) 推荐(0)
摘要: pinia之Vue 的存储库,案例:允许跨组件/页面共享状态--传值 第⼀步: npm install pinia 第⼆步:操作 src/main.ts import { createApp } from 'vue' import App from './App.vue' /* 引⼊createPi 阅读全文
posted @ 2024-06-04 10:27 爱豆技术部 阅读(336) 评论(0) 推荐(0)
摘要: //vue3之请求方式get,post案例 //get请求==api下的js文件设置请求路径 export function listCar(query) { return request({ url: '/mqtts/weizi/listlocation', method: 'get', para 阅读全文
posted @ 2024-05-28 10:21 爱豆技术部 阅读(679) 评论(0) 推荐(0)
摘要: == Vue页面文件== //vue文件引入组件 import { onMounted, reactive, ref,watch } from "vue"; import celiangjuli from "@/components/Map/celiangjuli.vue"; //使用组件 key: 阅读全文
posted @ 2024-05-28 09:59 爱豆技术部 阅读(133) 评论(0) 推荐(0)
摘要: //将json转成数组 const positions = JSON.parse(JSON.stringify(positionsPo.value)); positions.forEach(position => { const marker = new AMap.Marker({position, 阅读全文
posted @ 2024-05-22 10:26 爱豆技术部 阅读(28) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 22 下一页
TOP