Ruby on Rails新手在这里。
TL; DR:在尝试创建新记录时,我收到一条错误消息,指出我的外键必须存在。我在我的视图中使用选择框。需要帮助。
我正在为我们公司的支持人员创建一个请求管理系统。到目前为止,我已经为问题和2个模型生成了一个支架,一个用于Category,另一个用于Subcategory。
到目前为止,我提出的关系设计如下:
问题属于Category和Subcategory 子类别属于Category。
这意味着用户可能会遇到键盘问题,他将为此创建问题。这个问题将属于名为“Peripherals”的子类别,而子类别又属于更广泛的“硬件”类别。
我仍然需要实现Ajax来获取Select Box的数据,但是在更简单的场景中测试它时,我无法从“New Issue”视图创建我的问题。我遇到一条错误消息,指出Category和Subcategory必须存在。我已经回顾了到目前为止我写的内容,但找不到我的错误。
以下是问题控制器
中我的创建方法的代码def create
@issue = Issue.new(issue_params)
respond_to do |format|
if @issue.save
format.html { redirect_to root_path, notice: 'Issue was successfully created.' }
else
@categories = Category.enabled
@subcategories = Subcategory.enabled
format.html { render :new }
end
end
end
这里是我的模型
问题模型:
class Issue < ApplicationRecord
belongs_to :category
belongs_to :subcategory
end
类别型号:
class Category < ApplicationRecord
has_many :subcategories
has_many :issues
enum status: { disabled: 0, enabled: 1 }
after_initialize :set_defaults
def self.enabled
where(status: 'enabled')
end
def set_defaults
self.status ||= 1
end
end
子类别模型
class Subcategory < ApplicationRecord
belongs_to :category
has_many :issues
enum status: { disabled: 0, enabled: 1 }
def self.enabled
where(status: 'enabled')
end
after_initialize :set_defaults
def set_defaults
self.status ||= 1
end
end
最后,这是传递给控制器的参数:
Processing by IssuesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tzKDayYfEbEwTaOFup/N9kQ+8tr9c0P5otV2B0boKGrgyv+HkQaEvYJ6ZMQeR+8XgCnhJR6PosVcx0jPJpqBEA==", "category_id"=>"1", "subcategory_id"=>"1", "issue"=>{"description"=>"Replace broken keyboard.", "status"=>"1", "criticality_level"=>"1"}, "commit"=>"Create Issue"}
I was able to create an Issue via Rails Console, though.
有人能给我一个如何解决这个问题的提示吗?谢谢你们!
答案 0 :(得分:1)
按如下方式修改创建动作
def create
@category = Category.find(params[:category_id])
@issue = @category.issues.build(issue_params)
respond_to do |format|
if @issue.save
format.html { redirect_to root_path, notice: 'Issue was successfully created.' }
else
@categories = Category.enabled
@subcategories = Subcategory.enabled
format.html { render :new }
end
end
end