在我的项目中,当我在chrome中运行它时,显示的时间错误。资源管理器显示正确。所以我写了这个js代码,但它仍然无法正常工作。
这是我的js;



  var FormatTrxStartDate = function (value, record) {
            var processDate = new Date(value);
            return processDate.getDate() + "." + (processDate.getMonth() + 1) + "." +
            processDate.getFullYear() + " " + processDate.getHours() + ":" +
            processDate.getMinutes() + ":" + processDate.getSeconds();
        };





这就是我使用它的地方;

<ext:ModelField Name="TrxStartDate" Type="String" >
<Convert Fn='FormatTrxStartDate' />
</ext:ModelField>

最佳答案

以不正确的日期格式传递参数值

使用processDate.getFullYear()==> processDate.getFullYear().toDateString()日期数据转换为字符串

08-07 18:54