2016-10-22 92 views
-4

有人回答的簡單問題,在這個打字稿功能中會發生什麼?Angular2 Typescript「=()=>」

getTweetCount =() => this.data.totalCount; 

data.totalCount是來自服務的類型編號。

+2

你要指定一個返回總數的名字'getTweetCount'一個無參數的功能。因此,你可以做例如'count = getTweetCount()'。 – jonrsharpe

+0

非常感謝。 –

+0

這與TypeScript(不是「打字稿」)無關,它只是普通的舊版ES6。 – 2016-10-23 05:25:37

回答

0
getTweetCount =() => this.data.totalCount; 

您正在創建一個返回this.data.totalCount的「箭頭函數」。有很多關於箭頭功能的文檔。

更多

箭頭功能也都涵蓋在這裏:https://basarat.gitbooks.io/typescript/content/docs/arrow-functions.html

+0

很高興知道,謝謝 –

+0

請注意,就目前而言,這並不能解釋什麼是箭頭功能。我已經包含了明確的歸屬,以避免它成爲垃圾郵件,但將其添加到答案本身會更好。 – jonrsharpe

相關問題