如何获取单选按钮的答案,以便在轨道上的红宝石中显示

时间:2016-04-18 01:09:37

标签: ruby-on-rails ruby ruby-on-rails-3 radio-button

我对rails上的ruby很新,并且无法在我的视图中显示我的单选按钮选项。我可以看到答案出现在日志中,但我无法让它们显示在视图中。

我的_form.html.erb:

<%= f.label :_ %>
<%= radio_button_tag(:comein, "Drop Off") %>
<%= label_tag(:comein, "Drop Off") %>
<%= radio_button_tag(:comein, "Pick Up") %>
<%= label_tag(:comein, "Pick Up") %>

我的show.html.erb视图:

<strong>How Order Is Coming Into Office:</strong>
<%= @article.comein %>

我的控制器:

  class ArticlesController < ApplicationController
  def index
     @articles = Article.all
  end

  def show
     @article = Article.find(params[:id])
  end

  def new
     @article = Article.new
  end

 # snippet for brevity

 def edit
    @article = Article.find(params[:id])
 end

 def create
    @article = Article.new(article_params)

if @article.save
    redirect_to @article
else
render 'new'
end
end

 def update
  @article = Article.find(params[:id])

if @article.update(article_params)
   redirect_to @article
else
  render 'edit'
 end
end

def destroy
  @article = Article.find(params[:id])
 @article.destroy

 redirect_to articles_path
end

private
  def article_params
  params.require(:article).permit(:number, :address, :forename, :surname,        :ordertype, :notes, :comein, :goout)
 end

 end

1 个答案:

答案 0 :(得分:1)

虽然您尚未发布完整代码,但您无疑会在视图中使用form_for帮助程序,类似于以下内容:

<%= form_for @some_object do |f| %>
  ...
<% end %>

您选择的格式意味着您需要使用radio_button_tag之类的model object helpers rather than tag helpers。你如何区分助手类型?标记助手都带有_tag后缀。标记帮助程序在form_tag中使用,而模型对象帮助程序在form_for中使用,这是您正在使用的。

您应该使用的是radio_button helper(以及label助手)。

示例:

<%= f.label :comein, "Pick Up", :value => "true" %><br />
<%= f.radio_button :comein, true%>
<%= f.label :comein, "Drop Up", :value => "false" %><br />
<%= f.radio_button :comein, false, :checked => true %>