如果我有这样的代码:
class SomeClass
constructor: ->
@someAttr = false
someFunction: ->
process.nextTick ->
@someAttr = true
obj = new SomeClass
obj.someFunction()
obj.someAttr # Would still be false, because the @ (this) is in the process context
它不起作用,因为 process.nextTick 将我们带入了一个不同的上下文,其中没有定义 @someAttr。我该如何解决这个问题(当我想调用 SomeClass 的方法时)?