2017-04-30 12 views
-1

In this code in my code。日付のタイムゾーンでの解析AngularJS

<span> {{messages.created_time}}</span> 

これは出力に含ま

2017-04-29T12:46:49+0000 

あるしかし、私は出力に含まになりたい:

n minutes ago // if less than one hour following the user timezone 

22:46 // if more or equal than one hour following the user timezone 

SUN AT 22:46 // if more or equal than a day following the user timezone 

APRIL 2 AT 22:46 // if more or equal than a week following the user timezone 

私は角のJSを使用しています。 ありがとう

+0

さまざまな可能性を計算するフィルタを作成する必要があります。 – Claies

答えて

0

これは単にmoment.jsを使用して行う必要があります。角度フィルタを使用してカスタムロジックを適用するだけです。

<span> {{messages.created_time | filterfn}}</span> 

function filterfn(time){ 
    // all custom logic for span text creation 
    return $moment(time); 
}