admin管理员组文章数量:1343311
I'm trying to find a way to escape word from date format in angular and show result as: 2016-12-23 23:59 GMT
. When I'm using next code
'date:"yyyy-MM-dd HH:mm":"GMT"'
The angular shows date without any problem, but without word GMT. However I'm trying to pass a word "GMT" and escape it,
'date:"yyyy-MM-dd HH:mm":"GMT" \"GMT\"'
I'm getting an syntax error.
This date format I'm using as cellFilter for my ui-grid and setting from controller. This is plunker with my problem
Where is my mistake?
I'm trying to find a way to escape word from date format in angular and show result as: 2016-12-23 23:59 GMT
. When I'm using next code
'date:"yyyy-MM-dd HH:mm":"GMT"'
The angular shows date without any problem, but without word GMT. However I'm trying to pass a word "GMT" and escape it,
'date:"yyyy-MM-dd HH:mm":"GMT" \"GMT\"'
I'm getting an syntax error.
This date format I'm using as cellFilter for my ui-grid and setting from controller. This is plunker with my problem
Where is my mistake?
Share Improve this question edited Nov 14, 2016 at 21:26 antonyboom asked Nov 14, 2016 at 21:10 antonyboomantonyboom 1,1812 gold badges17 silver badges47 bronze badges3 Answers
Reset to default 10You can pass the escape string into your format date string, like this:
cellFilter: 'date:"yyyy-MM-dd HH:mm \'GMT\'":"GMT"'
The result: http://plnkr.co/edit/0FbYfjehnNo26Fw8wKva?p=preview
Could you not just append it?
{{'date:"yyyy-MM-dd HH:mm":"GMT"'}} GMT
You can always make you own custom filter, that accepts date and format it to a desired dispaly format with maybe moment.js or etc...
本文标签: javascriptHow to escape word from date format angularjsStack Overflow
版权声明:本文标题:javascript - How to escape word from date format angularjs - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743726962a2528527.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论