摘要: 来源:the collation conflict between "chinese_prc_ci_as" and "sql_latin1_general_cp1_ci_as" in the equal to operation - 游子看世界 - 博客园 https://www.cnblogs.c 阅读全文
posted @ 2024-12-27 09:59 老飞飞 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 现在数据库中一个字段保存的是json字符串,比如:"{"code":0,"msg":"OK"}",可是如果直接返回,会在javascript 的 var data = jQuery.parseJSON(data1); 的时候出错。 正确的处理方式是 url="["+thisDr["jsonText" 阅读全文
posted @ 2024-12-06 11:28 老飞飞 阅读(7) 评论(0) 推荐(0) 编辑
摘要: form程序有时候会使用到目录,比如写log文件等。 这个时候强烈推荐大家使用AppDomain.CurrentDomain.BaseDirectory来获得当前目录, 不建议使用Environment.CurrentDirectory。 理由是:如果将exe拖个快捷方式到桌面,Environmen 阅读全文
posted @ 2024-12-04 17:20 老飞飞 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 需求:一个待办事项列表页面(A页面),点击新开一个处理待办的页面(B页面)。在B页面上点击一个按钮(处理这件事情)后, 要求A页面进行刷新,主要目的是去掉进入B页面的链接,避免进行2次处理等。 找到页面传输数据的方法,首先想到的是cookie。 代码开整,在B页面设定cookie ,main_ref 阅读全文
posted @ 2024-10-09 11:46 老飞飞 阅读(8) 评论(0) 推荐(0) 编辑
摘要: XSSFCellStyle headStyle = workBook.CreateCellStyle() as XSSFCellStyle; headStyle.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Center; XSSFFont fo 阅读全文
posted @ 2024-09-16 21:26 老飞飞 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 转自:SAP如何debug远程调用的函数模块 (SAP: How to debug RFC) - SAP Community 我是大自然的搬运工 很多ABAP的初学者在debug程序的时候经常会遇到一个问题,那就是RFC的function module的debug问题,例如,A系统的程序中通过RFC 阅读全文
posted @ 2024-07-18 08:30 老飞飞 阅读(77) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/friend/p/16754184.html\ public async Task<int> Save(long moldProducedProductId, List<MoldStandardResource> list) { int result 阅读全文
posted @ 2024-05-03 16:25 老飞飞 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 需求:如果是新建的单据,就不允许进行勾选;如果打开之前建立的旧单,就可以进行勾选。 假设前面增加的选择项的部分是 { field: 'index1', checkbox: true, fixed: true, }, 我们需要在done事件中进行判断 , done: function (res, cu 阅读全文
posted @ 2024-04-04 16:20 老飞飞 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 转载于:https://baijiahao.baidu.com/s?id=1724200064045898644&wfr=spider&for=pc 为了避免运行时编译cshtml造成的性能问题,ASP.NET Core MVC项目在发布的时候默认会把cshtml文件编译到dll中,但是有的项目希望 阅读全文
posted @ 2024-01-10 08:29 老飞飞 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 2023-12-27 jquery 3.4.1 升级问题 被稽核部门认为jquery使用的3.41存在漏洞,要求升级到3.4.2以上版本 首先升级到jquery3.5.1,结果发现ajax部分都存在问题,比如$.ajax,$.post都会报错,看到3.5.1的备注发现 -ajax等的备注 马上找到j 阅读全文
posted @ 2023-12-27 15:16 老飞飞 阅读(38) 评论(0) 推荐(0) 编辑