角度2示例中的get格式语句

时间:2017-05-17 20:33:14

标签: angular angular-pipe

在管道的角度2示例中:https://angular.io/docs/ts/latest/guide/pipes.html 有一个HeroBirthday2Component的例子。我无法理解这条线是如何工作的

get format() { return this.toggle ? 'shortDate' : 'fullDate'; }

我的意思是我理解它切换了format属性,并且在toggleFormat()更改之后,DOM会通过更改检测进行更新。但是我无法理解上面的那一行。有人可以解释一下代码行及其实现。

1 个答案:

答案 0 :(得分:0)

这是一个吸气剂,就像其他强类型语言一样。

见这里:

get and set in TypeScript