CoffeeScript 不断在函数作用域之外编译缩进代码
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个疯狂的猜测:您正在混合制表符和空格进行缩进。如果您的 CoffeeScript 是这样的(其中,当然
是单个制表符):那么您将得到您所看到的输出,并且如果您的制表位设置为 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):then you'll get the output you're seeing and if your tab-stop is set to 4, your eyes won't notice.