摘要: 昇码资源社区网址:https://sionma.com 阅读全文
posted @ 2020-10-30 13:51 By子诺 阅读(155) 评论(0) 推荐(0)
摘要: 最新的个人文章在我的CSDN发布:https://blog.csdn.net/m0_43413873 阅读全文
posted @ 2020-09-21 01:08 By子诺 阅读(137) 评论(0) 推荐(0)
摘要: 系统信息 arch 显示机器的处理器架构uname -m 显示机器的处理器架构uname -r 显示正在使用的内核版本 dmidecode -q 显示硬件系统部件 - (SMBIOS / DMI) hdparm -i /dev/hda 罗列一个磁盘的架构特性 hdparm -tT /dev/sda 阅读全文
posted @ 2020-06-02 15:04 By子诺 阅读(154) 评论(0) 推荐(1)
摘要: var array = ['a','b','c','d','e','f','g']; array.splice(jQuery.inArray('f',array),1); console.log(array);// a,b,c,d,e,g 阅读全文
posted @ 2020-05-26 17:30 By子诺 阅读(2380) 评论(0) 推荐(0)
摘要: SELECT * from vat_subject sbWHERE stage_id=1 and course=0ORDER BY RAND() LIMIT 0,4 ORDER BY RAND() :代表随机 LIMIT 0,4 :查询4条数据 随机查询4条 测试结果1: 测试结果2: 阅读全文
posted @ 2020-05-24 20:53 By子诺 阅读(636) 评论(0) 推荐(0)
摘要: getway API网关报错:Load balancer does not have available server for client: vat-core 或者 转发错误的解决方案 在 application.yml 的网关配置文件里面,把负载均衡关闭 Load balancer does n 阅读全文
posted @ 2020-05-22 23:14 By子诺 阅读(1774) 评论(0) 推荐(0)
摘要: datalist.reverse();//翻转的核心函数reverse() for (var i = 0; i < datalist.length; i++) { var record = "<div class='mesbox unread recordlist' name=" + datalis 阅读全文
posted @ 2020-05-21 19:59 By子诺 阅读(4540) 评论(0) 推荐(0)
摘要: var mySwiper = new Swiper('.swiper-container', { direction: 'horizontal', loop: true, // 循环模式选项 autoplay: { disableOnInteraction: false, //开启这个就可以自动滑动 阅读全文
posted @ 2020-05-14 23:02 By子诺 阅读(875) 评论(0) 推荐(0)
摘要: D:\WorkSpace\xyhb\.metadata\.plugins\org.eclipse.core.runtime\.settings 1.打开你的工作空间 2.进入 .metadata\.plugins\org.eclipse.core.runtime\.settings 3.把.sett 阅读全文
posted @ 2020-05-12 17:42 By子诺 阅读(417) 评论(0) 推荐(0)
摘要: 解决方案: 1:右击工程项目-》点击properties 2:选择Deployment Assembly 3:点击Add -》Java Build Path Entries 4:选中 Maven Dependencies-》Finish -》Apply-》OK. 5.Clean project an 阅读全文
posted @ 2020-05-12 17:27 By子诺 阅读(872) 评论(0) 推荐(0)