CoffeeScript惰性函数的实现

发布于 2024-10-20 14:41:50 字数 693 浏览 1 评论 0原文

我想在 JavaScript

var init = function () {
              // do some stuff once
              var once = true

              // overwrite the function 
              init = function () {
                 console.log(once)
              }

}

CoffeeScript 中添加另一个本地 var init 到初始 init 中,这样第二个 init 就不会覆盖第一个 init

var init = function () {
              var init //automatically declared by coffeescript
              // do some stuff once
              var once = true

              // overwrite the function 
              init = function () {
                 console.log(once)
              }

}

。对于解决方案/解决方法的一些提示,我们将不胜感激。

I would like to something like this in JavaScript

var init = function () {
              // do some stuff once
              var once = true

              // overwrite the function 
              init = function () {
                 console.log(once)
              }

}

CoffeeScript adds another local var init to the initial init so the second init doesn't overwrite the first one

var init = function () {
              var init //automatically declared by coffeescript
              // do some stuff once
              var once = true

              // overwrite the function 
              init = function () {
                 console.log(once)
              }

}

Some tips for solutions / workarounds would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹊巢 2024-10-27 14:41:50

更新:下面的答案当时在 CoffeeScript 1.0.1 下是准确的。在 CoffeeScript 1.1.0 下不再是这种情况,解决了这个问题。)

哇,这让我感到惊讶。 CoffeeScript

init = ->
  init = -> console.log once

声明了外部 init 和内部 init。在我看来,这更可能是一个错误,而不是有意识的语言设计决策——编译器在评估外部 init = 赋值之前更简单地评估函数。我已经对此提出了问题

这是一种解决方法:

init = null
init = ->
  init = -> console.log once

现在只有一个 init,即具有最外层作用域的那个。

(Update: The answer below was accurate at the time, under CoffeeScript 1.0.1. It is no longer the case under CoffeeScript 1.1.0, which fixed this issue.)

Wow, this surprises me. The CoffeeScript

init = ->
  init = -> console.log once

declares both an outer init and an inner init. This strikes me as more likely a bug than a conscious language design decision—the compiler simpler evaluates the function before it evaluates the outer init = assignment. I've gone ahead and filed an issue on this.

Here's a workaround:

init = null
init = ->
  init = -> console.log once

Now there's only one init, the one with the outermost scope.

风筝在阴天搁浅。 2024-10-27 14:41:50

我相信这是设计使然。您不应该依赖隐式全局变量。 init 是 window/global 对象的属性,因此只需正确引用它即可:

window.init = ->
    var once = true
    window.init = ->
        console.log once

I believe this is by design. You shouldn't rely on implicit globals. init is a property of the window/global object, so just reference it correctly:

window.init = ->
    var once = true
    window.init = ->
        console.log once
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文