0

我想要做的是同时获取项目列表,隐藏它们并将它们分配给这样的变量:

jQuery ->
    client_list or= $('.client-list').find('.actions').hide()

但这会中断并且 ActionController 说Error: the variable "client_list" can't be assigned with ||= because it has not been defined.

我该如何解决?这甚至可能吗?

4

1 回答 1

1

你在 coffeescript 中的做法是这样的:

client_list = client_list ? $('.client-list').find('.actions').hide()

但是我认为这样做没有任何意义,除非您稍后在运行时重用该调用(如在延迟加载中)。

所以实际上在这种情况下根本不需要使用?

于 2013-01-03T14:18:13.747 回答