我从咖啡脚本开始。(还有英语,所以对于任何语法错误我很抱歉。)看看这个类:
class Stuff
handleStuff = (stuff) ->
alert('handling stuff');
它编译为:
var Stuff;
Stuff = (function() {
var handleStuff;
function Stuff() {}
handleStuff = function(stuff) {
return alert('handling stuff');
};
return Stuff;
})();
在 Html 上,我创建了一个 Stuff 实例,但该死的东西说它没有方法 handleStuff。为什么?