
小case
文章平均质量分 61
生活中的小问题
一缕纯氧
这个作者很懒,什么都没留下…
展开
-
Intellij Idea开发基础操作汇总
调整字体大小:-编辑区-Settings-->Editor-->Color Scheme-->Color Scheme Font-[x]Use color scheme font instead of the default-->Name/Size原创 2022-10-04 16:31:15 · 843 阅读 · 0 评论 -
tab框切换简易版
<!DOCTYPE html><html lang="en"><head> <title>tab切换</title> <style type="text/css"> body { font: "宋体"; font-size: 12px; } a:link, a:visited { font-s.原创 2021-02-22 16:38:38 · 184 阅读 · 0 评论 -
文本长度过长时省略号缩写,鼠标移动显示全部信息
1. 单行实现方式(HTML)实现效果:源码:<div style="width:200px;overflow:hidden; white-space:nowrap; text-overflow:ellipsis" title="CSS实现文本过长时省略号缩写,鼠标移动显示全部信息">CSS实现文本过长时省略号缩写,鼠标移动显示全部信息</div>CSS的两个属性:属性:值 ;描述overflow:hidden;文本内容会被修剪,并且其余内容是不可原创 2021-02-18 11:00:47 · 971 阅读 · 0 评论 -
Failed messages: com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.1 Client was not authenticated
我在springboot项目中执行发送邮件的方法时报错如下:org.springframework.mail.MailSendException: Failed messages: com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.1 Client was not authenticated; message exception details (1) are:Failed message 1:com.sun.mail.smtp.SMTPSendF原创 2020-07-10 11:02:34 · 4013 阅读 · 0 评论 -
部署springboot环境时spring-boot-maven-plugin插件未加载
今天使用新电脑部署Springboot环境时出现了spring-boot-maven-plugin未加载上提醒,起初以为Mac未越狱之类的问题,后来仔细研究了几个安装的教学视频发现,主要问题出在maven的settings.xml配置上。我的setting.xml配置的镜像配繁琐了,改成阿里云的镜像其实就好了: <mirror> <id>ne...原创 2020-03-09 13:19:24 · 1049 阅读 · 0 评论 -
解决okhttp3提示java.lang.IllegalStateException: closed异常
使用okhttp3的response.body().string()时候提示java.lang.IllegalStateException: closed异常原因为okhttp3请求回调中response.body().string()只能有效调用一次,而我使用了两次,所以在第二次时调用时提示已关闭流的异常。 Response response = httpClient.newCall(...原创 2020-04-28 11:37:39 · 7516 阅读 · 0 评论 -
防止layer.confirm重复点击问题
var lock = false;//用来锁定确认按钮,防止重复提交(默认未锁定) layer.confirm("显示单据是否提交?", function () { if (!lock) { lock = true;//锁定 console.log("提交成功~~~"); } });前台重复点击“确定”仅能提交一次啦~...原创 2020-05-13 17:00:01 · 2113 阅读 · 0 评论 -
idea文件夹平铺问题
最近idea的文件夹显示好魔幻,都平铺显示,操作起来着实难受:原创 2020-06-09 10:06:40 · 2541 阅读 · 0 评论