#controller
# Boolean variable is act
def update
@item = post.find(params[:id])
-->@item.update_attribute.act=true
or
-->@item.update_attributes(true.permit(:act))
or
--> @item.update(act: false)
@item.save
end
嗨,我需要帮助来通过查找该列的“id”来更新作为布尔变量的单个属性“act”。我搜索了很多网页,但没有找到如何静态更新。