テンプレートの 1 つに少量のロジックを追加しようとしています (ビューにロジックを配置することの誤りについて私を叱らないでください)、正しい hamlc 構文を取得するのに苦労しています。
コレクションを繰り返し処理していて、別のコレクションに存在する要素をスキップしたい
まっすぐな coffeescript は次のようになります。
for artwork in artworks
unless _.find(cart_items, (ci) ->
ci.id == artwork.product_code
alert 'artwork not in cart'
私はしようとしています:
- for artwork in artworks
- unless _.find(cart_items, (ci) -> | # < multiline, right?
ci.id == artwork.product_code
- alert 'artwork not in cart'
そして、次のことについてごちゃまぜになっています:
Block level too deep in line undefined
何か案は?ティア、ビリー