-
Notifications
You must be signed in to change notification settings - Fork 1
angular time
遇见王斌 edited this page Dec 24, 2019
·
4 revisions
var dateAsString = $filter('date')(item_date, "yyyy-MM-dd hh:mm:ss");
注意: controller 需要注入 $filter
{{item_date | date:'yyyy-MM-dd hh:mm:ss'}}
cellTemplate:'<div class="ui-grid-cell-contents" > __row.entity.create_time | date:"yyyy-MM-dd hh:mm:ss"__</div>',
PHP 开发中,一般存的时间戳是秒数,angularjs 的时间戳是毫秒数,所有在视图里处理时间的时候,需要把秒 * 1000 转换为毫秒
// 这里的dt1单位是秒
{{ dt1 * 1000 | date:'yyyy-MM-dd HH:mm:ss' }}