最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to escape word from date format angularjs - Stack Overflow

programmeradmin0浏览0评论

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 badges
Add a ment  | 

3 Answers 3

Reset to default 10

You 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...

发布评论

评论列表(0)

  1. 暂无评论