当我尝试这个时,我得到 {a: 1, b:} for c not present。当 c 存在时,我得到 {a:1,b:1} 这是正确的。但是我怎样才能有条件地隐藏节点 b 以便我只能得到 {a:1}?
{"a": <%= json @teams.count %>
,"b": <%= json @teams.num if @c.present? %>}
当我尝试这个时,我得到 {a: 1, b:} for c not present。当 c 存在时,我得到 {a:1,b:1} 这是正确的。但是我怎样才能有条件地隐藏节点 b 以便我只能得到 {a:1}?
{"a": <%= json @teams.count %>
,"b": <%= json @teams.num if @c.present? %>}