上一页 1 2 3 4 5 6 ··· 13 下一页
  2025年8月4日
摘要: GeoHash是一种将二维地理坐标(经纬度)转换为一维字符串的技术,通过递归划分地球表面区域实现高效索引。 基本原理 GeoHash将经纬度范围划分为矩形区域,每个区域分配相同编码。编码通过二进制序列表示经纬度位置,通过奇偶位交替记录纬度与经度信息,最终转换为Base32编码的字符串。 ‌ 核心特点 阅读全文
posted @ 2025-08-04 16:14 骑着母猪去打猎 阅读(57) 评论(0) 推荐(0)
  2025年6月16日
摘要: $.ajax({ url: contextPath + "/xxx.json", data: {}, dataType: "json", // 或其他xml等 type: "post", // 或get success: function(jqdata){ }, error: function(jq 阅读全文
posted @ 2025-06-16 18:08 骑着母猪去打猎 阅读(20) 评论(0) 推荐(0)
  2025年4月25日
摘要: public static Map<String, Object> bean2Map(Object object) { Map<String, Object> map = new HashMap<>(); ReflectionUtils.doWithFields(object.getClass(), 阅读全文
posted @ 2025-04-25 18:18 骑着母猪去打猎 阅读(33) 评论(0) 推荐(0)
  2025年4月23日
摘要: var menuButton = document.getElementById('menubtn'); var menu = document.getElementById('menu'); var isVisible = false; // 跟踪菜单的显示状态 menuButton.addEve 阅读全文
posted @ 2025-04-23 18:02 骑着母猪去打猎 阅读(38) 评论(0) 推荐(0)
  2025年3月26日
摘要: ddata = data.list; $.each(ddata, function(idx, itm){ if(idx >= 5){ return false; } chart_series0_data.push({value: roundNumber(parseFloat(itm.zcl), 2) 阅读全文
posted @ 2025-03-26 10:33 骑着母猪去打猎 阅读(306) 评论(0) 推荐(0)
  2025年3月19日
摘要: 报错信息的原因: java.lang.IllegalStateException: Encountered invalid @Scheduled method 'LastReportOfMonth': For input string: "L"Spring默认定时@Scheduled不支持L、W、C 阅读全文
posted @ 2025-03-19 11:11 骑着母猪去打猎 阅读(106) 评论(0) 推荐(0)
摘要: 可使用maven中pom.xml配置来直接使用 如: <!-- https://mvnrepository.com/artifact/org.jxls/jxls --> <dependency> <groupId>org.jxls</groupId> <artifactId>jxls</artifa 阅读全文
posted @ 2025-03-19 11:05 骑着母猪去打猎 阅读(50) 评论(0) 推荐(0)
  2025年2月21日
摘要: input[type=radio]:disabled { /*去除浏览器默认样式*/ appearance: none; -webkit-appearance: none; /*自定义样式*/ position: relative; width: 14px; height: 14px; border 阅读全文
posted @ 2025-02-21 16:09 骑着母猪去打猎 阅读(63) 评论(0) 推荐(0)
  2025年1月23日
摘要: redis-server.exe --service-install redis.windows.conf --loglevel verbose 阅读全文
posted @ 2025-01-23 17:28 骑着母猪去打猎 阅读(26) 评论(0) 推荐(0)
  2025年1月6日
摘要: 如:Cannot find a valid baseurl for repo: centos-sclo-rh/x86_64 如:14: curl#6 - "Could not resolve host: mirrorlist.centos.org; 未知的错误" 造成这个提示信息的原因主要为以下 : 阅读全文
posted @ 2025-01-06 19:06 骑着母猪去打猎 阅读(1524) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 13 下一页