我需要在 Rails 中渲染一个 JSON,但在我想验证我的类(例如商店)中的一个布尔值之前,它已经“发布”了布尔值。
我试过这样的事情:
json.extract! @store
json.store do
if @store.published true
json.array! (@store) do |store|
json.id store.id
json.published store.published
end
end
end