CoffeeScript 不断在函数作用域之外编译缩进代码

发布于 2024-12-11 16:28:40 字数 547 浏览 0 评论 0原文

Coffeescript 现在将以下代码编译

$ ->
    $("#debug").val "hey"
    for i in [0..3]
        m = new Message(5,5)
        text = "<div>#{m.message[m.message_id]}</div>"
        $("body").append(text)

为:

  $(function() {
    return $("#debug").val("hey");
  });
  for (i = 0; i <= 3; i++) {
    m = new Message(5, 5);
    text = "<div>" + m.message[t.message_id] + "</div>";
    $("body").append(text);
  }

整个“for”子句完全位于 jQuery 加载函数之外。这是怎么回事?我的缩进方式有什么问题?

Coffeescript is now compiling the following code

$ ->
    $("#debug").val "hey"
    for i in [0..3]
        m = new Message(5,5)
        text = "<div>#{m.message[m.message_id]}</div>"
        $("body").append(text)

into:

  $(function() {
    return $("#debug").val("hey");
  });
  for (i = 0; i <= 3; i++) {
    m = new Message(5, 5);
    text = "<div>" + m.message[t.message_id] + "</div>";
    $("body").append(text);
  }

The whole "for" clause is totally outside the jQuery load function. What is going on here? What's wrong with my way of indenting??

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

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

发布评论

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

评论(1

回梦 2024-12-18 16:28:40

这是一个疯狂的猜测:您正在混合制表符和空格进行缩进。如果您的 CoffeeScript 是这样的(其中,当然 是单个制表符):

$ ->
    $("#debug").val "hey"
<tab>for i in [0..3]
        m = new Message(5,5)
        text = "<div>#{m.message[m.message_id]}</div>"
        $("body").append(text)

那么您将得到您所看到的输出,并且如果您的制表位设置为 4,你的眼睛不会注意到。

Here's a wild guess: you're mixing tabs and spaces for indentation. If your CoffeeScript is this (where, of course <tab> is a single tab character):

$ ->
    $("#debug").val "hey"
<tab>for i in [0..3]
        m = new Message(5,5)
        text = "<div>#{m.message[m.message_id]}</div>"
        $("body").append(text)

then you'll get the output you're seeing and if your tab-stop is set to 4, your eyes won't notice.

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