我已经搜索了相关问题,但通过从我的 AngularJS 前端返回的 JSON 更新 rails 4 中的嵌套属性仍然存在问题。
问题:下面的代码概述了从 AngularJS 传递到我的 Rails4 应用程序中的候选模型的 JSON。Candidate 模型有很多 Works,我正在尝试通过 Candidate 模型更新 Works 模型。由于某种原因,Works 模型无法更新,我希望有人能指出我所缺少的。谢谢你的帮助。
这是候选人的 AngularJS 前端中的 json:
{"id"=>"13", "nickname"=>"New Candidate", "works_attributes"=>[
{"title"=>"Financial Analyst", "description"=>"I did things"},
{"title"=>"Accountant", "description"=>"I did more things"}]}
然后 Rails 通过添加候选标头将此 JSON 转换为以下内容,但不包括候选标头下的嵌套属性,并且无法通过候选模型更新works_attributes:
{"id"=>"13", "nickname"=>"New Candidate", "works_attributes"=>[
{"title"=>"Financial Analyst", "description"=>"I did things"},
{"title"=>"Accountant", "description"=>"I did more things"}],
"candidate"=>{"id"=>"13", "nickname"=>"New Candidate"}}
Candidate_controller.rb 包含一个简单的更新:
class CandidatesController < ApplicationController
before_filter :authenticate_user!
respond_to :json
def update
respond_with Candidate.update(params[:id], candidate_params)
end
private
def candidate_params
params.require(:candidate).permit(:nickname,
works_attributes: [:id, :title, :description])
end
end
Candidate.rb 模型包含以下代码,用于定义与 works 模型的 has_many 关系:
class Candidate < ActiveRecord::Base
## Model Relationships
belongs_to :users
has_many :works, :dependent => :destroy
## Nested model attributes
accepts_nested_attributes_for :works, allow_destroy: true
## Validations
validates_presence_of :nickname
validates_uniqueness_of :user_id
end
最后,works.rb 模型定义了 has_many 关系的另一面:
class Work < ActiveRecord::Base
belongs_to :candidate
end
我很感激你能提供的任何帮助,因为我确信我错过了一些相当简单的东西。
谢谢!