gpt4 book ai didi

ruby-on-rails - rails 3 : fields_for showing blank filed on Edit view

转载 作者:数据小太阳 更新时间:2023-10-29 07:14:23 24 4
gpt4 key购买 nike

在我的 Rails 3 应用程序中,我在 form_for 中使用 fields_for 来创建和编辑问题和答案。但是我在 fields_for 上的编辑 View 中遇到问题以获得答案。当我在数据库中为 1 个问题注册了 2 个答案时,编辑 View 会显示 2 个答案和一个空白字段。

这是模型代码和 View 代码:

问题模型:

# encoding: utf-8
class Question < ActiveRecord::Base
attr_accessible :description, :question_id , :research_id , :answer_id ,:answer_attributes
has_many :answer, :class_name => "Answer", :dependent => :destroy
accepts_nested_attributes_for :answer , :allow_destroy => true
belongs_to :research
end

答案模型:

class Answer < ActiveRecord::Base
belongs_to :question
has_many :evaluate_answers
attr_accessible :question_id, :description , :answer_attributes
end

最后是用于新建和编辑 View 的部分:

<%= form_for [:admin, @question] ,:html => { :class => "form-horizontal", :multipart =>      true, :onSubmit => " return teste()" } do |f| %>
...
....

<div id="div_respostas" class="respostas" style="margin-top: 25px; margin-left: 65px;">

<div id="campo_answers">
<%= hidden_field_tag :count_resp, 0%>
<p>Respostas <a href="#"><%=image_tag("admin/icons/btn_adicionar_p.jpg" ,{:onclick =>'add_answer()'}) %></a></p>

<%= f.fields_for :answer do |a| %>


<div id="answer_<%= @number = @number + 1 %>">
<%= a.text_field "description" %>
Delete: <%= a.check_box :_destroy %>
<a class="button_<%=@number%>" href="#"><%=image_tag("admin/icons/btn_excluir_p.jpg" , {:onclick =>"remove_answer(#{@number})"}) %></a><br /><br />
</div>
<%end%>

一切正常,只是在编辑 View 中,总是呈现一个空白字段。有没有办法删除这个空白字段?

编辑:

问题 Controller

def edit
@question = Question.find(params[:id])
@answers = Answer.where(:question_id => @question.question_id)
@number = 0
@question.answer.build
@questions = Question.all
end

应答 Controller

class AnswersController < ApplicationController
def index
@answers = Answer.all

end

end

最佳答案

这是因为你正在用这一行构建一个新的答案对象:

@question.answer.build

在 Controller 的 edit 操作中。

因此,当您访问编辑 View 时,您会看到数据库中的 2 个现有答案对象以及您在上面创建的全新答案对象。

关于ruby-on-rails - rails 3 : fields_for showing blank filed on Edit view,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18792071/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com