随笔分类 -  工作踩坑记录

工作中需要运用到的各种类型
Java 根据模板生成 PDF 文件 以及 excel 文件
摘要:模板PDF 的字段 引入maven <!-- iText for generating PDF files --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5. 阅读全文
posted @ 2024-09-02 17:33 depressiom 阅读(106) 评论(0) 推荐(0) 编辑
Spring 项目开发 - 工作记录
摘要:项目架构 外层 Controller model service 配置 查看事务回滚失败 # 日志配置 logging: level: org.springframework.jdbc: debug JAVA BigDecimal 转为负数 BigDecimal number = new BigDe 阅读全文
posted @ 2023-11-08 18:06 depressiom 阅读(11) 评论(0) 推荐(0) 编辑
微信小程序 封装请求api
摘要:封装请求地址 https.js let baseUrl='https://XX.XXX.com/index.php/'; //自己得服务器地址 export { baseUrl } 结构目录 封装 request.js import { baseUrl } from './https.js' mod 阅读全文
posted @ 2023-09-13 18:15 depressiom 阅读(74) 评论(0) 推荐(0) 编辑
使用正则表达式 移除 HTML 标签后得到字符串
摘要:# 需求分析 ## 后台返回的数据是 这样式的 需要讲html 标签替换 ```html high_light_text: "OPPO OPPO 白色 01" ``` ![需求分析](https://img-blog.csdnimg.cn/5b23327a9072413ab7309335c89309 阅读全文
posted @ 2023-08-03 13:11 depressiom 阅读(10) 评论(0) 推荐(0) 编辑
微信小程序实现pdf预览,并在下方添加签署按钮
摘要:# 实现图 ![实现图](https://img-blog.csdnimg.cn/74ce6095b4a24b7d9cec18758811a098.png) # 实现方案: > 通过 web-view 外接h5界面实现 ```wxml ``` > 需要在小程序开发管理 添加业务域名 ![实现](ht 阅读全文
posted @ 2023-06-16 18:09 depressiom 阅读(1047) 评论(0) 推荐(0) 编辑
微信小程序设置 本地图片为背景图 报错
摘要:# 微信小程序 通过wxss进行设置 背景图报错 ![背景](https://img-blog.csdnimg.cn/1eb37a0ae63b44cebc8959053cab751e.png) ## 经查询,发现微信小程序中,将网络图片或base64图片设置为背景图片可正常显示,将本地图片设置为背景 阅读全文
posted @ 2023-06-12 14:34 depressiom 阅读(309) 评论(0) 推荐(0) 编辑
微信小程序 swiper scroll 应用
摘要:swiper 演示视图 wxml <!-- 中部上游信息 --> <swiper class="swiper" autoplay circular previous-margin="20rpx" next-margin="60rpx"> <swiper-item wx:for="{{upstream 阅读全文
posted @ 2023-04-25 16:14 depressiom 阅读(49) 评论(0) 推荐(0) 编辑
CSS样式 按钮颜色透明
摘要:.close{ background-color:transparent; border-style:none; color: #FFFFFF; font-size: 32rpx; text-align: center; } 阅读全文
posted @ 2023-04-23 16:33 depressiom 阅读(25) 评论(0) 推荐(0) 编辑
微信小程序日期计算IOS无效的问题
摘要:需求:列表需要通过时间筛选出日期内的数据展示 代码在微信开发者工具真机调试与安卓手机测试都没啥问题,但是在ios中提交的参数 时间的值总是null /** * 近三天 * @param {*} last */ const getTimeThreeDay = last => { const year 阅读全文
posted @ 2023-04-17 10:17 depressiom 阅读(80) 评论(0) 推荐(0) 编辑
PHP 当前的毫秒时间戳
摘要://返回当前的毫秒时间戳 function msectime() { list($msec, $sec) = explode(' ', microtime()); $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec) 阅读全文
posted @ 2023-03-21 17:28 depressiom 阅读(207) 评论(0) 推荐(0) 编辑
浏览器报Mixed Content错误的解决:Mixed content: load all resources via HTTPS to improve the security of your site
摘要:https地址中,如果加载了http资源,浏览器将认为这是不安全的资源,将会默认阻止,这就会给你带来资源不全的问题了,比如:图片显示不了,样式加载不了,JS加载不了。 控制台报错: Mixed content: load all resources via HTTPS to improve the 阅读全文
posted @ 2023-02-01 15:31 depressiom 阅读(2067) 评论(0) 推荐(0) 编辑
CSS实现文本显示两行
摘要:效果图 text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -moz-box; -moz-line-clamp: 2; -moz-bo 阅读全文
posted @ 2023-01-29 12:10 depressiom 阅读(1149) 评论(0) 推荐(0) 编辑
win11系统新版edge不兼容网银如何解决【解决办法】
摘要:由于目前国内的网银都是基于IE浏览器进行开发的,由于微软推行Edge,Win11把IE砍掉后,会将IE的链接强制跳转到Edge上,很多网银无法调用,对于需要使用Web网银的用户来说非常不方便。这时候需要点开Edge浏览器的设置,在默认浏览器里找到Internet Explorer 兼容性这个选项卡, 阅读全文
posted @ 2023-01-09 10:48 depressiom 阅读(474) 评论(0) 推荐(0) 编辑
PHP 自定义 数组根据键去重 sql 查询 TP3.2.3 where 设置 is null
摘要:去重前 $result = $this->unique_array_by_key($result,"id"); function unique_array_by_key($array, $unique_key) { $tmp_key[] = array(); foreach ($array as $ 阅读全文
posted @ 2022-12-07 16:40 depressiom 阅读(196) 评论(0) 推荐(0) 编辑
小程序textarea穿透问题
摘要:问题: 当有fixed元素时,无论设置多少z-index值,textarea组件都会穿透该fixed元素 底部fixed浮动选择车牌组件,当车牌未点击确认,自动跳转到输入备注textarea focus 解决方案: 当遇到fixed元素盖住textarea时,可以在fixed元素出现时,将texta 阅读全文
posted @ 2022-11-18 15:11 depressiom 阅读(163) 评论(0) 推荐(0) 编辑
微信扫码 或者支付宝扫码之后限制 关闭当前窗口
摘要:业务流程 用户打开微信或者支付宝扫码之后 判断是否超过当日次数 超过便关闭当前窗口 微信关闭当前窗口 var ua = window.navigator.userAgent.toLowerCase(); if (ua.indexOf("micromessenger") > 0) { // 微信关闭当 阅读全文
posted @ 2022-10-25 17:55 depressiom 阅读(156) 评论(0) 推荐(0) 编辑
iOS input 以及textarea失去焦点 无法进行输入
摘要:百度了大部分的方法 都不行 后续通过跟朋友一起试验 /*在css中 对应的input 以及 textarea下 添加*/ input,textarea{ -webkit-user-select:auto !important; } iOS input 只输入0-9 <input type="text 阅读全文
posted @ 2022-10-19 12:19 depressiom 阅读(129) 评论(0) 推荐(0) 编辑
解决公众号网页 微信免登录 重定向 地址 只能带一个参数问题
摘要:场景描述 两个手机交互涉及公司内容就没有截图了 通过二维码扫码进入 判断扫码微信还是支付宝界面,判断之后微信免登陆进行重定向带值传递到后台交互界面 qrcodejs 1.生成二维码界面 //准备支付-进行扫码识别 微信还是支付宝 ready_pay_order(order_number,money) 阅读全文
posted @ 2022-10-19 10:19 depressiom 阅读(300) 评论(0) 推荐(0) 编辑
微信公众号网页授权获取用户信息的流程
摘要:官网文档 网页授权流程分为四步: 引导用户进入授权页面同意授权,获取code 通过 code 换取网页授权access_token(与基础支持中的access_token不同)(我的需求只需要到第二部) 如果需要,开发者可以刷新网页授权access_token,避免过期 通过网页授权access_t 阅读全文
posted @ 2022-10-13 12:14 depressiom 阅读(933) 评论(0) 推荐(0) 编辑
easyUI编辑其中某一行某一列
摘要:#效果图 获取初始表格数据 // 查询销售订单号,获取订单商品信息及其他信息 function search_sale_order() { var sale_order = $("#sale_order").val(); if (!sale_order) { $.messager.show({ ti 阅读全文
posted @ 2022-10-09 15:42 depressiom 阅读(398) 评论(0) 推荐(0) 编辑


点击右上角即可分享
微信分享提示