1

私はcoffeescriptを初めて使用します。しかし、質問をするのに適した言葉は見つかりませんでした。

私はこのようなコーヒースクリプトを持っています:

@collection.each (student) =>               
            ($(@el).find("#table .table").append new Item({model:student}).el)
                .find("td:last-child").hide()   

ただし、この醜い構文よりも、このメソッドチェーンを実行するためのより良い方法はありますか?$(@ el)からのみtd:last-childを検索したいのですが、角かっこはありません。どうやってやるの?

4

1 に答える 1

1

Why not put the parentheses on the append to match the other function calls?

@collection.each (student) =>     
    $(@el).find("#table .table")
        .append(new Item(model: student).el)
        .find("td:last-child")
        .hide()
于 2012-09-20T05:51:47.333 に答える