jQuery MiniUI

标题: 日期显示问题 [打印本页]

作者: s209392599    时间: 2019-7-4 11:22:56     标题: 日期显示问题

<div field="createTime" name="createTime" width="120px" dateFormat="yyyy-MM-dd" renderer="releaseDate">
    <spring:message code="projectInitiation.DateOfEntry"/><!-- 录入日期-->
    <input property="editor" class="mini-datepicker"  valueType="string" style="width: 100%;" />
</div>
<div field="createTime" name="createTime" width="130px" dateFormat="yyyy-MM-dd" >验证日期
    <input property="editor" class="mini-datepicker" dateFormat="yyyy-MM-dd"  valueType="string" showTime="true" style="width: 100%;" />
</div>
<div field="createTime" width="100" timeFormat="yyyy-MM-dd HH:mm:ss">批准日期
    <input property="editor" class="mini-datepicker" timeFormat="yyyy-MM-dd HH:mm:ss" style="width:100%;"/>
</div>
//时间格式转换
function releaseDate(e) {
    console.log(1111);
    var value = e.value;
    if (value){
        value = new Date(value);
        return mini.formatDate(value, 'yyyy-MM-dd');
    }else{
        return "";
    }
}

后台的返回值是:1558937894000

只有第一种的写法没问题,有没有不用写renderer的方法直接显示2019-05-27的方法,或者我该怎么写呢


作者: dforce    时间: 2019-7-4 12:12:29

请后台返回yyyy-MM-dd HH:mm:ss或者yyyy-MM-ddTHH:mm:ss格式的数据,这两种格式我们会自动转成date




欢迎光临 jQuery MiniUI (http://miniui.com/discuss/) Powered by Discuz! X2