兵兵有你

人品好,气质差.丢了工作就回家...

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 2 3 4 5 6 7 ··· 11 下一页

2021年9月15日

摘要: 理解定义 flex container:对要处理的div开启flex布局 display:flex|inline-flex(指定DIV后面的行内元素也会在同一行内)成为flex container flex items:指container里的多个子项目主(横)轴: main axis-->起点ma 阅读全文
posted @ 2021-09-15 14:46 greatbing 阅读(59) 评论(0) 推荐(0)

2021年8月30日

摘要: 1.需求:当需要选择不同的checkBox时,根据不同的值决定要不要增加输入框,这时要用到watch监测 //监测某个值的变化,n是新值,o是老值,注意是字段的值,不对监测对象 watch: { 'form.jumpType': { handler(new, old) { if (new != 3) 阅读全文
posted @ 2021-08-30 15:46 greatbing 阅读(40) 评论(0) 推荐(0)

2021年4月14日

摘要: import org.springframework.http.HttpEntity; import org.springframework.http.HttpHeaders; import org.springframework.http.MediaType; import org.springf 阅读全文
posted @ 2021-04-14 16:24 greatbing 阅读(2291) 评论(0) 推荐(0)

2021年3月15日

摘要: 1.先引入pom文件 <dependencies> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.1</version> </dependency> <depende 阅读全文
posted @ 2021-03-15 23:49 greatbing 阅读(111) 评论(0) 推荐(0)

2021年3月13日

摘要: <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.3.0</version> </dependency> <!-- mysql驱动包 --> <dependency> <gr 阅读全文
posted @ 2021-03-13 23:37 greatbing 阅读(151) 评论(0) 推荐(0)

摘要: 打开settings->Editor->File Encodings,设置Global Encoding和Project Encoding还有Default encoding for properties Files为UTF-8 找到idea安装目录下bin文件夹下的idea.exe.vmoptio 阅读全文
posted @ 2021-03-13 23:21 greatbing 阅读(107) 评论(0) 推荐(0)

2021年3月9日

摘要: SPEL表达式用法 SpelExpressionParser parser = new SpelExpressionParser(); Man man = new Man("系统", 10); Expression exp = parser.parseExpression("name == '系统1 阅读全文
posted @ 2021-03-09 22:30 greatbing 阅读(35) 评论(0) 推荐(0)

2021年1月28日

摘要: //不使用缓冲区,用时100MS public static void main(String[] args) { Writer writer = null; try { Long startTime = System.currentTimeMillis(); writer = new FileWr 阅读全文
posted @ 2021-01-28 23:31 greatbing 阅读(198) 评论(0) 推荐(0)

2021年1月18日

摘要: $headArr=['姓名','身高','','位置'];//列名 $data = [['aa',12,'b'],['bb',13,'c'],['dd',34,'e]]; //数据 function exportToExcel($fileName = '', $headArr = [], $data 阅读全文
posted @ 2021-01-18 17:33 greatbing 阅读(430) 评论(0) 推荐(0)

2020年8月28日

摘要: 先在父页面定义一个函数 //分配产品 function ChooseAdidValues(v) { if (v != "") { $('#txtmarry').val(v); } } 再在子页面定义一个函数 function BtnOk(ids) { parent.ChooseAdidValues( 阅读全文
posted @ 2020-08-28 15:34 greatbing 阅读(1368) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 ··· 11 下一页