世界那么好,机会那么多

这里除了干货,什么都没有

随笔分类 -  other

other
摘要:项目中碰到使用easyui-combobox下拉框,但是在选择时候要触发选中事件,网上找了好多贴吧,好多都是给出这样解决方式 $("#id").combobox({ onSelect: function () { } }); 但是,使用的是<input>标记创建组合框,试了了很多次上面的方法好像都不 阅读全文
posted @ 2021-07-02 11:28 面向对象爱好者社区 阅读(1551) 评论(0) 推荐(0) 编辑
摘要:org.springframework.orm.jpa.JpaSystemException: Null value was assigned to a property org.springframework.orm.jpa.JpaSystemException: Null value was a 阅读全文
posted @ 2020-12-04 21:18 面向对象爱好者社区 阅读(471) 评论(0) 推荐(0) 编辑
摘要:1. 以管理员身份运行vscode; 2. 执行:get-ExecutionPolicy,显示Restricted,表示状态是禁止的; 3. 执行:set-ExecutionPolicy RemoteSigned; (若此命令执行失败的话,则执行这条: Set-ExecutionPolicy -Sc 阅读全文
posted @ 2020-09-25 09:37 面向对象爱好者社区 阅读(285) 评论(0) 推荐(0) 编辑
摘要:Angular启动时增加参数:--host 0.0.0.0 --disableHostCheck 例如:ng serve --open --port 4200 --host 0.0.0.0 --disableHostCheck 阅读全文
posted @ 2020-09-16 20:13 面向对象爱好者社区 阅读(533) 评论(0) 推荐(0) 编辑
摘要:解决办法: 1.在项目目录cmd下运行 npm install -g cnpm --registry=https://registry.npm.taobao.org 2.下载成功后再运行 cnpm install node-sass 成功后就可以正常的运行项目了。 阅读全文
posted @ 2020-07-15 00:58 面向对象爱好者社区 阅读(1316) 评论(0) 推荐(0) 编辑
摘要:问题描述: Unexpected end of JSON input while parsing near '…" 解决办法: (1) npm install --registry=https://registry.npm.taobao.org --loglevel=silly (2) npm ca 阅读全文
posted @ 2020-05-20 14:23 面向对象爱好者社区 阅读(229) 评论(0) 推荐(0) 编辑
摘要:<script> var str = "http://abc.com/asd/zzz.mp3" //接收输入的内容 str = str.substring(str.lastIndexOf("/")+1); alert(str) </script> Java版 public class Test1 { 阅读全文
posted @ 2020-04-06 15:17 面向对象爱好者社区 阅读(432) 评论(0) 推荐(0) 编辑
摘要:<html> <head> <meta charset="utf-8"/> <title>从上往下,从左往右</title> <style> #flex-container {flex-flow:column wrap; } #flex-container > :nth-child(4n - 2) 阅读全文
posted @ 2020-04-06 14:56 面向对象爱好者社区 阅读(1530) 评论(0) 推荐(0) 编辑
摘要:<head> <script type="text/javascript"> function checkthis() { var t=document.forms[0].elements[0]; var reg=/^\d+[.]?\d{1,3}$/; alert(reg.test(t.value) 阅读全文
posted @ 2020-03-04 10:35 面向对象爱好者社区 阅读(1045) 评论(0) 推荐(0) 编辑
摘要:百度输入ip即可 阅读全文
posted @ 2020-03-03 17:57 面向对象爱好者社区 阅读(156) 评论(1) 推荐(0) 编辑
摘要:<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <div id="tree" data-leaves="47" data-plant-height="2.4m" 阅读全文
posted @ 2020-02-27 18:11 面向对象爱好者社区 阅读(4380) 评论(0) 推荐(0) 编辑
摘要:<html> <header> </header> <body> <!-- 装备清单 --> <div id="zbqd"> <table border="1" cellspacing="0" style=" border-collapse: collapse;font-size: 14px;"> 阅读全文
posted @ 2020-02-26 17:51 面向对象爱好者社区 阅读(664) 评论(0) 推荐(0) 编辑
摘要:如果 d:\upload\file\ 文件夹不存在,会报错 String strPath = "d:\\upload\\file\\2.mp3"; File file = new File(strPath); if(!file.exists())){ file.createNewFile(); } 阅读全文
posted @ 2020-02-23 23:31 面向对象爱好者社区 阅读(1240) 评论(0) 推荐(0) 编辑
摘要:public void test() { List<User> list = new ArrayList<>(); //User 实体 测试用 String id,name; //当前测试以id来分组,具体请按开发场景修改 list.add(new User("1", "1")); list.add 阅读全文
posted @ 2020-01-20 10:56 面向对象爱好者社区 阅读(4303) 评论(0) 推荐(0) 编辑
摘要:tomcat启动总是出现Cannot assign requested address: JVM_Bind异常 解决方法: 将计算机的C:\Windows\System32\drivers\etc\hosts文件中发现如下部分内容: # localhost name resolution is ha 阅读全文
posted @ 2020-01-13 10:41 面向对象爱好者社区 阅读(1160) 评论(0) 推荐(0) 编辑
摘要:原样传递给 RegisterModel 时,应该为 阅读全文
posted @ 2019-12-30 22:49 面向对象爱好者社区 阅读(945) 评论(0) 推荐(0) 编辑
摘要:出现此问题,有可能是spring cloud 与spring boot 版本不匹配引发的问题,此次用的版本是:Finchley.RC1 经过一番关键字查找,发现spring cloud 与spring boot有着比较严格的版本匹配。不能再像开发单体应用时,随时变更spring boot的版本。 现 阅读全文
posted @ 2019-11-28 00:59 面向对象爱好者社区 阅读(10518) 评论(0) 推荐(0) 编辑
摘要:linux安装环境 Ubuntu18.04 阅读全文
posted @ 2019-11-16 15:29 面向对象爱好者社区 阅读(249) 评论(0) 推荐(0) 编辑
摘要:window->preference->java->code styple->code template->Comments 设置完后点Apply 阅读全文
posted @ 2019-11-16 15:26 面向对象爱好者社区 阅读(121) 评论(0) 推荐(0) 编辑

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