Angularjs中date过滤器失效的问题及解决方法
程序员文章站
2022-07-06 14:29:02
在开发中遇到date过滤器失效的问题,在其他页面date过滤器没有问题,但是在这个页面出现了问题,后来发现是因为{{now | date : 'yyyy-mm-dd hh:...
在开发中遇到date过滤器失效的问题,在其他页面date过滤器没有问题,但是在这个页面出现了问题,后来发现是因为{{now | date : 'yyyy-mm-dd hh:mm:ss'}}
now必须是时间戳格式的,后面的过滤器才会生效。而我从后端传过来的时间数据是字符串所以过滤器无法生效
解决方法:在后端处理要传的数据,将里面的时间转为时间戳即可(下面贴我百度到的)
/** * 时间转时间戳 */ public static string datetostamp(string s) throws parseexception{ string res; simpledateformat simpledateformat = new simpledateformat("yyyy-mm-dd hh:mm:ss"); date date = simpledateformat.parse(s); long ts = date.gettime(); res = string.valueof(ts); return res; }
总结
以上所述是小编给大家介绍的angularjs中date过滤器失效的问题及解决方法,希望对大家有所帮助