我正在尝试向我的一个模板添加少量逻辑(请不要骂我在视图中放置逻辑的错误)并且很难获得正确的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
有什么想法吗? TIA, 比利
答案 0 :(得分:1)
我可以通过将闭包放在同一行上来实现这一点:
- for artwork in artworks
- unless _.find(cart_items, (ci) -> ci.id == artwork.id)
- alert 'not in the cart'