【发布时间】:2016-12-01 15:35:44
【问题描述】:
当变量名以“@”符号开头时,Coffeescript 中的含义是什么? 例如,我一直在查看hubot源代码,就在我查看的前几行中,我发现了
class Brain extends EventEmitter
# Represents somewhat persistent storage for the robot. Extend this.
#
# Returns a new Brain with no external storage.
constructor: (robot) ->
@data =
users: { }
_private: { }
@autoSave = true
robot.on "running", =>
@resetSaveInterval 5
我在其他几个地方见过它,但我无法猜出它的含义。
【问题讨论】:
-
在coffeescript中@表示这个。
-
你看过CoffeeScript documentation吗?搜索
@会回答您的问题,并且可能还会教您一些其他的东西。
标签: coffeescript