gpt4 book ai didi

ruby-on-rails - Ruby on Rails form.object 不响应对象方法 : undefined method for nil:NilClass

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:11 25 4
gpt4 key购买 nike

我正在为 Rails 3 使用 ryanb 的 nested_form gem,并试图访问在表单中传递的对象,以便我可以标记由表单生成器生成的字段。

我有以下基本结构:

Trainer has_many :clients, through: :relationships
Trainer has_many :schedules

Client has_many :trainers, through: :relationships
Client has_many :schedules

客户端#edit页面的 View 代码:

<% provide(:title, @client.name) %>
<h2><%= link_to @client.name, @client %></h2>

<%= render :partial => 'shared/errors', :locals => { :user => @client } %>

<%= nested_form_for @client do |f| %>

<p><%= f.link_to_add "Add Schedule", :schedules %></p>

<%= f.fields_for :schedules do |schedule_form| %>

<%= schedule_form.object.trainer.name %>

<%= schedule_form.date_select :scheduled_date %>
<%= schedule_form.link_to_remove "Remove" %>

<%= schedule_form.hidden_field :trainer_id %>
<%= hidden_field_tag :trainer_id %>

<% end %>

<br><%= f.submit "Create", class: 'btn btn-large btn-primary' %></br>
<% end %>

<%= schedule_form.object.trainer.name %>抛出 undefined method 'name' for nil:NilClass错误。

这就是它变得奇怪的地方。我将在下面发布几个场景,我修改该行,然后将输出发布到页面上:

<%= schedule_form.object.trainer %>
<Trainer:0x007fdcedf3f800>

<%= schedule_form.object.trainer.class %>
Trainer

<%= schedule_form.object.trainer.is_a?(Object) %>
true

<%= schedule_form.object.trainer.respond_to?(:name) %>
true

<%= schedule_form.object.trainer.name %>
undefined method 'name' for nil:NilClass

<%= t_id = schedule_form.object.trainer_id %>
1
<%= Trainer.find(t_id) %>

<%= t_id = schedule_form.object.trainer_id %>
1
<%= Trainer.find_by_id(t_id) %>
#<Trainer:0x007fdcedf09660>

<%= t_id = schedule_form.object.trainer_id %>
1
<%= Trainer.find_by_id(t_id).name %>
undefined method 'name' for nil:NilClass

所以基本上 - 我可以使用表单生成器检索 :schedule 对象并查询它以检索 :trainer 对象(schedule.trainerschedule.trainer_id);然而,:trainer 对象不会响应它的任何实例方法,即使据我所知,它是类 Trainer 的一个对象。

如何返回 trainer.name ?这就是我想要的:一个标签。请帮忙。

编辑:添加了培训师模型

class Trainer < ActiveRecord::Base
attr_accessible :email, :name, :password, :password_confirmation
has_secure_password
has_many :relationships
has_many :clients, through: :relationships
has_many :schedules

validates :name, presence: true
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
validates :email, presence: true, format: { with: VALID_EMAIL_REGEX },
uniqueness: { case_sensitive: false }
validates :password, presence: true, length: { minimum: 6 }, on: :create
validates :password_confirmation, presence: true, length: { minimum: 6 }, on: :create

before_save { |trainer| trainer.email = email.downcase }

end

编辑 - 稍后添加。

我尝试使用以下代码,它按预期工作:

<%= t_id = 1 %>
<%= Trainer.find(t_id).name %>

返回

Joe Trainer

但是:

<%= t_id = schedule_form.object.trainer_id %>
> 1
<%= Trainer.find(t_id) %>
> Couldn't find Trainer without an ID
<%= Trainer.find_by_id(t_id) %>
> #<Trainer:0x007fea86b9a168>
<%= Trainer.find_by_id(t_id).name %>
> undefined method 'name' for nil:NilClass

很明显,无论从 schedule_form.object 返回什么,都有一些“额外的包袱”。有没有办法取t_id = schedule_form.object.trainer_id并对其进行清理,以便我拥有的只是一个纯整数,不受任何先前历史的影响?

最佳答案

您的代码在 Schedule 对象上失败,但您没有发布该模型。

很可能它崩溃是因为您没有使用 @trainer.schedules.create 创建计划,而是使用了 Schedule.create 或 Schedule.new...然后 trainer 属性未初始化,因此为 nil。

关于ruby-on-rails - Ruby on Rails form.object 不响应对象方法 : undefined method for nil:NilClass,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11882621/

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