作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 coffeescript 中,您可以通过在定义前加上 @
来将对象或类分配给全局命名空间。象征。
例如
class @Dog #This is now available via window.Dog due to the @
constructor : () ->
@
符号到另一个对象,而不是窗口?
@ = {}
, 我收到了
error: unexpected =
最佳答案
您不能 给 this
分配一些东西, this
是作用域变量。
我想你可以做一些函数来设置命名空间:
@scope = do ( -> return @ ) #change `@` at the end to your namespace
class @scope.Dog
constructor: () ->
...
this.scope = (function() {
return this;
})();
this.scope.Dog = (function() {
function Dog() {
...
}
return Dog;
})();
关于javascript - 将@ 分配给一个单独的对象以方便命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18533836/
在javascript中,我可以这样写 console.log( person.name || person.nickname || '-' ) 然后会先查找name字段,如果找不到,会回退到nick
在为通用接口(interface)编写回调时,定义他们自己负责创建和访问的本地数据可能很有用。 在 C 中,我只使用一个空指针,类 C 示例: struct SomeTool { int ty
我是一名优秀的程序员,十分优秀!