会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
大脑过载
博客园
首页
新随笔
联系
订阅
管理
2024年12月20日
金蝶-菜单按钮确认功能
摘要: 需求:点击金蝶菜单,增加提示框,当点击确定后,再执行后续操作; 1.在金蝶开发平台扩展这个系统 2.编辑字段属性,隐藏金蝶原本按钮,新增一个同名的按钮 标识不能编辑的是金蝶原生按钮,新增同名按钮后调整序号,即可. 3.开发金蝶插件 key就是上面对应的标识 [HotUpdate] public cl
阅读全文
posted @ 2024-12-20 15:26 大脑过载
阅读(54)
评论(0)
推荐(0)
2023年10月20日
kkfile4.0 nginx映射踩坑
摘要: 官网文档要修改base.url 和service.context-path,但是修改后不起作用! 后花了大半天翻阅文档后才发现4.0并没有service.context-path,要修改server.servlet.context-path!!!!!(base.url同样要修改) 修改后 原帖:ht
阅读全文
posted @ 2023-10-20 10:04 大脑过载
阅读(85)
评论(0)
推荐(0)
2023年4月18日
ant-design select宽度异常
摘要: 异常现象:层级下拉框宽度过窄 解决方法:在src目录下找到style.less 添加.ant-select的属性 修复后:
阅读全文
posted @ 2023-04-18 15:54 大脑过载
阅读(422)
评论(0)
推荐(0)
2022年8月23日
.net core 获取接口访问类型
摘要: // 注册服务 using Microsoft.AspNetCore.Http; services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>(); // 实现层 // 注入引用 private readonly IHttpCont
阅读全文
posted @ 2022-08-23 17:36 大脑过载
阅读(100)
评论(0)
推荐(0)
2022年8月19日
.net core 获取useragent
摘要: var request = HttpContext.Request.Headers["User-agent"];
阅读全文
posted @ 2022-08-19 11:14 大脑过载
阅读(270)
评论(0)
推荐(0)
2022年7月29日
ant design Unknown custom element: <a-carousel>
摘要: vue ant design Carousel 走马灯报错 原封不动复制官网代码,开发者工具提示找不到元素,实为逆天,原来是需要引入组件才能使用!!!!!!!!!!!!!!!!!!!! 正确方法 import { Carousel } from 'ant-design-vue'; 后续更新,今天在代
阅读全文
posted @ 2022-07-29 17:50 大脑过载
阅读(407)
评论(0)
推荐(0)
2022年6月27日
echarts 条形图X轴纵向显示
摘要: 效果图: 代码
阅读全文
posted @ 2022-06-27 10:25 大脑过载
阅读(114)
评论(0)
推荐(0)
2022年4月20日
JS子页面调用父页面的方法
摘要: 方法1: 子页面关闭后触发父页面的方法 // 父页面const winObj = window.open(url.href); const loop = setInterval(() => { if (!winObj) { return; } if (winObj.closed) { clearIn
阅读全文
posted @ 2022-04-20 09:55 大脑过载
阅读(2229)
评论(0)
推荐(0)
2022年1月7日
C# .net core使用HttpClient方式调用WebService
摘要: // 声明接口入参(多个参数在此累加) // objData=>对象格式要转成json string var parameters= new Dictionary<string, string> { { "para1", objData}, { "para2", "test" }, }; HttpC
阅读全文
posted @ 2022-01-07 15:24 大脑过载
阅读(838)
评论(0)
推荐(0)
2021年11月11日
C# npoi判断excel具体行数
摘要: 仅对有必填行数有有效 int countCol=0 // i为一定不为空的列 for (int i = 0; i <= headerRow.LastCellNum; i++) { if (sheet.GetRow(1).GetCell(i) == null) { break; } if (strin
阅读全文
posted @ 2021-11-11 14:51 大脑过载
阅读(628)
评论(0)
推荐(0)
下一页
公告