作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试关注 Ryan Bates RailsCast #196: Nested model form part 1 。 Ryans 版本有两个明显的区别:1)我使用的是内置脚手架,不像他使用的那么漂亮,2)我运行的是 Rails 4(我真的不知道 Ryans 在他的 Actor 阵容中使用的是哪个版本) ,但不是 4)。
这就是我所做的
rails new survey2
cd survey2
bundle install
rails generate scaffold survey name:string
rake db:migrate
rails generate model question survey_id:integer content:text
rake db:migrate
然后我将关联添加到模型中,如下所示
class Question < ActiveRecord::Base
belongs_to :survey
end
等等
class Survey < ActiveRecord::Base
has_many :questions
accepts_nested_attributes_for :questions
end
然后我添加了嵌套 View 部分
<%= form_for(@survey) do |f| %>
<!-- Standard rails 4 view stuff -->
<div class="field">
<%= f.label :name %><br>
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.fields_for :questions do |builder| %>
<div>
<%= builder.label :content, "Question" %><br/>
<%= builder.text_area :content, :rows => 3 %>
</div>
<% end %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
最后是 Controller ,以便在实例化新调查时创建 3 个问题
class SurveysController < ApplicationController
before_action :set_survey, only: [:show, :edit, :update, :destroy]
# Standard rails 4 index and show
# GET /surveys/new
def new
@survey = Survey.new
3.times { @survey.questions.build }
Rails.logger.debug("New method executed")
end
# GET /surveys/1/edit
def edit
end
# Standard rails 4 create
# PATCH/PUT /surveys/1
# PATCH/PUT /surveys/1.json
def update
respond_to do |format|
if @survey.update(survey_params)
format.html { redirect_to @survey, notice: 'Survey was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: 'edit' }
format.json { render json: @survey.errors, status: :unprocessable_entity }
end
end
end
# Standard rails 4 destroy
private
# Use callbacks to share common setup or constraints between actions.
def set_survey
@survey = Survey.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def survey_params
params.require(:survey).permit(:name, questions_attributes: [:content])
end
end
因此,创建包含三个问题的新调查就可以了。但是,如果我尝试编辑其中一项调查,则会保留原来的三个问题,同时创建另外三个问题。因此,我现在有 6 个编辑调查问题,而不是 3 个问题。我添加了
Rails.logger.debug("New method executed")
到 Controller 中的新方法,据我所知,当我进行编辑操作时它不会执行。谁能告诉我我做错了什么?
非常感谢任何帮助!
最佳答案
我必须将 :id
添加到 survey_params
方法中允许的参数中。现在看起来像这样:
# Never trust parameters from the scary internet, only allow the white list through.
def survey_params
params.require(:survey).permit(:name, questions_attributes: [:id, :content])
end
效果很好。我猜想是生成了新的 ID,而不是传递给更新操作。
关于duplicates - RoR 嵌套属性在编辑时会产生重复项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18946479/
我创建了一个分支来开发新功能。由于这个新功能完全是作为一个新项目开发的,唯一可能的冲突来源是解决方案文件。 随着功能的开发,主分支更新了几次。当我完成开发和测试时,我做了: git checkout
我是一名优秀的程序员,十分优秀!