1
我發現Angular Date documentation here,並認爲過濾器yyyy就夠了,但它仍然附在當天。如何在Angular中顯示4位數年份?
我的HTML:
<p class="footer_copy">© {{ footer.date | date : yyyy }} AT&T</p>
我的頁腳角指令,用一個函數來創建一個日期:
// Directive for Footer
app.directive('appFooter', function() {
return {
restrict: 'E',
templateUrl: 'templates/app-footer.html',
controller: function(){
this.date = Date.now();
},
controllerAs:'footer'
};
});
但是現在它吐出來©2014年9月24日AT & T
我想要它創建©2014 AT; 0 T
我可以在控制器組合成我的指令正確?會討厭浪費整個控制器只是爲了吐出一個日期。他們將如何結合到我現在擁有的? – 2014-09-25 04:09:08
@LeonGaban是的..你可以 – 2014-09-25 04:10:41
啊我錯過了我yyyy周圍的報價,'yyyy'謝謝! 4分鐘 – 2014-09-25 04:10:52