gpt4 book ai didi

javascript - CoffeeScript 中的匿名函数语法

转载 作者:IT王子 更新时间:2023-10-29 03:21:07 25 4
gpt4 key购买 nike

我一直在看CoffeeScript而且我不明白你会如何编写这样的代码。它如何处理语法中的嵌套匿名函数?

;(function($) {
var app = $.sammy(function() {

this.get('#/', function() {
$('#main').text('');
});

this.get('#/test', function() {
$('#main').text('Hello World');
});

});

$(function() {
app.run()
});
})(jQuery);

最佳答案

实际上并没有编译它,但这应该可以工作

(($) ->
app = $.sammy ->

this.get '#/', ->
$('#main').text ''

this.get '#/test', ->
$('#main').text 'Hello World'

$(->
app.run()
)
)(jQuery);

关于javascript - CoffeeScript 中的匿名函数语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4166445/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com