会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
VipSoft
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
59
下一页
2025年10月20日
Unable to register MBean [SftpPool
摘要: https://www.cnblogs.com/vipsoft/p/17272728.html org.springframework.jmx.export.UnableToRegisterMBeanException: Unable to register MBean [SftpPool [max
阅读全文
posted @ 2025-10-20 12:38 VipSoft
阅读(21)
评论(0)
推荐(0)
2025年10月11日
Webservice 调用带用户名密码的接口 ,CXF中 the namespace on the "definitions" element, is not a valid SOAP version报错!
摘要: CXF中 the namespace on the "definitions" element, is not a valid SOAP version报错!
阅读全文
posted @ 2025-10-11 17:40 VipSoft
阅读(19)
评论(0)
推荐(0)
2025年9月30日
Java 一行一行的读取文本,小Demo 大学问
摘要: String str="A\n" + "B\n" + "C"; 在Java中,有多种方式可以一行一行地读取文本。以下是几种常用的方法: 1. 使用 BufferedReader + FileReader String str = "A\n" + "B\n" + "C"; // 方法1:从字符串读取
阅读全文
posted @ 2025-09-30 15:34 VipSoft
阅读(291)
评论(0)
推荐(0)
2025年9月15日
Vue3 多环境切换方式
摘要: Vue3 修改原有的多环境切换方式: https://www.cnblogs.com/vipsoft/p/19059258 Vue 多环境配置: https://www.cnblogs.com/vipsoft/p/16696640.html 创建文件 创建 public/app-settings.j
阅读全文
posted @ 2025-09-15 09:52 VipSoft
阅读(24)
评论(0)
推荐(0)
2025年9月10日
Vue 父页面调用子页面的方法,排序 sort localeCompare
摘要: Vue 父页面调用子页面的方法 父页面 <el-col :lg="4" :xs="24" class="mb-[12px]"> <HospitalTree ref="hospitalTreeRef" v-model="queryParams.HospitalId__eq" @node-click="
阅读全文
posted @ 2025-09-10 10:29 VipSoft
阅读(20)
评论(0)
推荐(0)
Vue 将api 获取的 json 数据保存到本地
摘要: <script setup lang="ts"> //引用对象 + 扩展属性 const props = defineProps({ detailData: { type: Object, default: () => ({}), // 默认空对象,避免 undefined }, }); const
阅读全文
posted @ 2025-09-10 07:59 VipSoft
阅读(36)
评论(0)
推荐(0)
2025年9月8日
问卷调查数据库设计
摘要: 设计一个问卷调查数据库时,需要考虑以下几个关键要素:问卷、问题、选项、用户回答等。以下是一个基本的数据库设计方案,使用关系型数据库(如MySQL、PostgreSQL)来实现。 1. 数据库表设计 1.1 问卷表 (surveys) 存储问卷的基本信息。 字段名 数据类型 描述 survey_id
阅读全文
posted @ 2025-09-08 16:40 VipSoft
阅读(204)
评论(0)
推荐(0)
2025年9月4日
Vue 下载文件流,重命名 无法获取 "Content-Disposition"
摘要: //这句要加,否则前端获取不到 "Content-Disposition" response.setHeader("Access-Control-Expose-Headers", "Content-Disposition"); response.setHeader("Content-Disposit
阅读全文
posted @ 2025-09-04 15:05 VipSoft
阅读(47)
评论(0)
推荐(0)
Vue 菜单管理,全选 半选 el-checkbox-group el-checkbox indeterminate
摘要: 注意:indeterminate = false ,表示没被选中,提交的时候没有值 <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=devic
阅读全文
posted @ 2025-09-04 13:58 VipSoft
阅读(14)
评论(0)
推荐(0)
2025年9月3日
HTML 下载APP 页面 - 支持多语言
摘要: 支持多语言 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>App
阅读全文
posted @ 2025-09-03 20:56 VipSoft
阅读(50)
评论(0)
推荐(0)
C# 正由另一进程使用,因此该进程无法访问此文件。
摘要: 文件“D:\XXX ”正由另一进程使用,因此该进程无法访问此文件。 File.Copy(sourceFileName, destFileName, true); 这个错误表明在尝试复制文件时,源文件正被另一个进程锁定/占用,导致无法访问。以下是可能的原因和解决方案: 可能原因 文件仍被上传进程占用:
阅读全文
posted @ 2025-09-03 07:20 VipSoft
阅读(395)
评论(0)
推荐(0)
2025年9月1日
Vue 前端版本更新提示,通知用户刷新UI
摘要: 前端更新程序后,通知用户刷新UI 需要手动修改版本号 在 public 目录下 创建 version.json { "version": "1.0.0" } src\App.vue 文件中添加如下代码 <script setup lang="ts"> // 检查版本更新 const checkVer
阅读全文
posted @ 2025-09-01 08:33 VipSoft
阅读(141)
评论(0)
推荐(0)
2025年8月28日
Vue element admin 直接输入path 权限过滤
摘要: 菜单权限 store\modules\permisstion.ts -> generateRoutes() 按钮权限 directive\permission\index.ts 路由权限 plugins\permission.ts permission.ts 修改如下 import type { N
阅读全文
posted @ 2025-08-28 09:50 VipSoft
阅读(24)
评论(0)
推荐(0)
2025年8月27日
Vue el-button 图标靠右显示
摘要: <el-button size="small" link icon="Switch">更多</el-button> 修改后 <el-button type="primary" size="small" link> 更多 <el-icon class="el-icon--right"><DArrowR
阅读全文
posted @ 2025-08-27 15:07 VipSoft
阅读(81)
评论(0)
推荐(0)
2025年8月26日
Vue3 修改原有的多环境切换方式
摘要: Vue2 多环境配置:https://www.cnblogs.com/vipsoft/p/16696640.html 一般可以使用 Jenkins 对配置 .env.development、.env.production,不同的环境进行构建 在没有 CI/CD 的情况下。Vue 项目的打包变得繁琐。
阅读全文
posted @ 2025-08-26 16:39 VipSoft
阅读(62)
评论(0)
推荐(0)
Vue 词云图 echart-wordCloud
摘要: Unknown series wordCloud 缺少引用: import "echarts-wordcloud"; https://ecomfe.github.io/echarts-wordcloud/ https://www.npmjs.com/package/echarts-wordcloud
阅读全文
posted @ 2025-08-26 14:12 VipSoft
阅读(83)
评论(0)
推荐(0)
Vue 连接 WebSocket wss://echo.websocket.org/ws
摘要: 由于 wss://echo.websocket.org 不支持STOMP协议,改用原生WebSocket API 这个地址可以用来测试,wss://echo.websocket.org/ws 最终效果 代码如下: <template> <div class="app-container"> <el-
阅读全文
posted @ 2025-08-26 11:37 VipSoft
阅读(143)
评论(0)
推荐(0)
Vue 缓存之坑,变量赋值方式和响应式数据
摘要: const { IsSuperAdmin } = useUserStore().userInfo; /** * 获取后台动态路由数据,解析并注册到全局路由 * * @returns Promise<RouteRecordRaw[]> 解析后的动态路由列表 */ function generateRo
阅读全文
posted @ 2025-08-26 10:00 VipSoft
阅读(220)
评论(0)
推荐(0)
2025年8月25日
Vue element admin 浏览器本地存储 localStorage、useStorage
摘要: 目录localStorage 与 useStorage 的区别localStorage(原生 API)useStorage(VueUse 工具函数)对比示例总结删除 userInfo 的 key 方法1. 使用 useStorage 的推荐方式2. 手动删除 localStorage 的 key3.
阅读全文
posted @ 2025-08-25 14:26 VipSoft
阅读(323)
评论(0)
推荐(1)
2025年8月22日
Vue 根据权限过滤菜单、按钮
摘要: 菜单权限 store\modules\permisstion.ts -> generateRoutes() import { RouteRecordRaw } from "vue-router"; //privateRoutes 前端配置好的JS菜单,权限控制由前端控制,【后端省事】 import
阅读全文
posted @ 2025-08-22 17:21 VipSoft
阅读(45)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
59
下一页
公告