SpringBoot接收对象中包含时间参数,前端传过来的时间数据为'2019-12-19 08:08:08',SpringBoot不能自己转化时间为Date,会报错。 解决办法: 使用@JsonFormat注解 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", ...
分类:
编程语言 时间:
2019-12-19 23:43:54
阅读次数:
322
<select id="getJhList" resultType="string"> select t.jh from jcsxx t where ceil(sysdate- to_date(substr(t.ssgxsj, 0,19),'yyyy/mm/dd hh24:mi:ss')) <![C ...
分类:
其他好文 时间:
2019-12-19 19:24:46
阅读次数:
85
<?phpclass Person{ public $name; public $age; public static $ss = "第一个"; function __construct($name,$age){ // TODO:实现构造函数()方法 $this->name=$name; $this ...
分类:
Web程序 时间:
2019-12-19 19:19:09
阅读次数:
85
```java package com.mozq.sb.file01.test; import org.apache.poi.hssf.usermodel.*; import org.apache.poi.hssf.util.HSSFColor; import org.apache.poi.ss.u... ...
分类:
其他好文 时间:
2019-12-19 19:16:31
阅读次数:
68
一、如何优化 用户在访问网页时, 最直观的感受就是页面内容出来的速度,我们要做的优化工作, 也主要是为了这个目标。那么为了提高页面加载(或者渲染)速度呢?一般来说有三个方面: 1、代码逻辑:优秀的代码逻辑结构可以有效减少渲染页面使用的内存和速度(比如虚拟DOM),此方面不在本文讨论范围内。 2、SS ...
分类:
Web程序 时间:
2019-12-18 12:56:17
阅读次数:
78
由于服务是axios 请求,地址/api/use, 端口默认80 了解过nuxt的生命周期,beforeCreated 和 created 是同时运行在服务端和客户端上的,mounted以后才会运行在客户端。 之前spa项目在created生命周期里请求数据,我使用的三方axios,那么整体转为ss ...
分类:
其他好文 时间:
2019-12-17 13:36:41
阅读次数:
636
var nn = [ { a: 'ss' },{ a: 'aa' },{ a : '11'},{ a: '33' },{ a: '88' } ] 我要怎么获取 a = 33的下标 var index = nn.map(item => item.a).indexOf(33) 来源:https://zh ...
分类:
编程语言 时间:
2019-12-16 14:49:22
阅读次数:
92
登陆一个Git的托管服务器,这里我使用的是自己搭建的gitlab。然后创建一个账号,新建一个仓库。下载git客户端。配置12git config --global user.name "your name"git config --global user.email "your email"生成SS... ...
分类:
其他好文 时间:
2019-12-12 01:29:49
阅读次数:
90
1、NPOI版本为2.4.1 2、 using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using System; using System.Collections.Generic; using ...
分类:
其他好文 时间:
2019-12-11 14:44:25
阅读次数:
103
1.24小时时间格式制定 按照2019-12-10-13-00-00格式输出:string dtnow = string.Format("{0:yyyy-MM-dd-HH-mm-ss}", DateTime.Now); //24小时制 按照2019-12-10-01-00-00格式输出:string ...