我从 MVC 页面返回以下 JSON 日期,例如
"DateProcessed":"\/Date(1258125238090)\/"
我正在使用 JTemplates 来处理数据,如下所示。
$('#result').setTemplate($("#TemplateResultsTable").html());
$("#result").processTemplate(data);
这是我的结果模板
<script type="text/html" id="TemplateResultsTable">
<h3>{$T[0].StatusName} - Found: {$T.length} </h3>
<table>
<tr>
<th>Name</th>
<th>Description</th>
<th>Date Processed</th>
</tr>
{#foreach $T as match}
<tr>
<td>{$T.match.Title}</td>
<td>{$T.match.Description}</td>
<td>{$T.match.DateProcessed}</td>
</tr>
{#/for}
</table>
</script>
除了我的日期在页面上输出为 /Date(1258125238090)/
如何格式化结果模板中的日期?