我想知道如何使用一个submit
按钮来更改布尔属性,而不是使用单选按钮。
例如,如果我在Post#index
页面上显示“已发布”和未发布的文章帖子列表,并且我想要一个名为“发布”的按钮,它将模型上的 :is_published 字段设置Post
为 true。
我在 Rails 3.2.13 上使用 strong_parameters
我在想Post
我会在控制器中
def index
@post = Post.recent
end
def update
@post = Post.find_by_slug(params[:id])
if params[:publish_button]
@post.is_published = true
@post.save
redirect_to root_path
end
end
private
def post_params
params.require(:person).permit(:body, :publish_button)
end
在我看来,Post#index
我有一个form_for
<%= f.submit 'Publish', name: publish_button %>
这是中的视图Post#index
<%= form_for @post do |f| %>
<div class="field">
<%= f.label :body %><br />
<%= f.text_field :body %>
</div>
<div class="actions">
<%= f.submit %>
<%= f.submit_tag 'Publish Post', name: 'publish_post' %>
</div>
<% end %>
简单模型如下
class Post < ActiveRecord::Base
include ActiveModel::ForbiddenAttributesProtection
scope :recent, -> { order('updated_at DESC') }
end
但我得到一个错误Required parameter missing: post
提前致谢。
更新 我添加了一个与问题相对应的模型和视图。我希望它有所帮助。