我的SQL服务器输出格式化时间问题。 数据在json中检索," formatter" 和" formatoptions" 用于在JQGRID中填充日期和时间,如下所示: / p>
{
key: false, name: 'Date_Rencontre', index: 'Date_Rencontre', align: 'right', width: 90,
formatter: 'date', formatoptions: { srcformat: "ISO8601Long", newformat: "d/m/Y" }
},
{
key: false, name: 'Heure_Debut', index: 'Heure_Debut', align: 'right', width: 100,
formatter: 'date', formatoptions: { srcformat: "ISO8601Long", newformat: "HH:mm" }
},
{
key: false, name: 'Heure_Fin', index: 'Heure_Fin', align: 'right', width: 100,
formatter: 'date', formatoptions: { srcformat: "ISO8601Long", newformat: "HH:mm" }
},
日期部分工作正常,但时间部分显示" [对象]" 。 我尝试了多种选项和组合,其中大多数都返回"对象" 或" NaN"
请参阅下面的源数据和jqgrid显示enter image description here