0

我想知道如何使用一个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

提前致谢。

更新 我添加了一个与问题相对应的模型和视图。我希望它有所帮助。

4

1 回答 1

0

将您的值作为隐藏字段传递,例如

= form_for @post do |f|
  = f.hidden_field :is_published, value: "1"
  = f.submit "Publish"

如果您希望它像 button_to 一样内联,请给它 button_to 类:

= form_for current_user.profile, html: { class: 'button_to' } do |f|
  ...
于 2013-08-26T21:17:29.287 回答