gpt4 book ai didi

mysql - Rails ActiveRecord::Relation 未定义方法

转载 作者:行者123 更新时间:2023-11-29 04:09:48 24 4
gpt4 key购买 nike

我有一家模范医院:

class Hospital < ActiveRecord::Base
attr_accessible :beds, :fax_no, :hospital_name, :phone_no, :district_id, :institution_type_id, :location_id, :division_id, :block_id, :hospital_type_id, :IsAdministrativeLocation, :IsTribal, :latitude, :longitude

belongs_to:district
belongs_to:division
belongs_to:institution_type
belongs_to:hospital_type
belongs_to:block

has_many:hospital_reports
has_many:health_dept_locations
has_many:sanctioned_posts
has_many:postings
has_many:vw_sanctioned_working_by_hospitals
end

vw_sanctioned_working_by_hospitals 的观点如下

mysql> desc vw_sanctioned_working_by_hospital;
+--------------------+---------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------------------+---------------+------+-----+---------+-------+
| hospital_id | int(11) | NO | | 0 | |
| hospital_name | varchar(255) | YES | | NULL | |
| class_1_sanctioned | decimal(32,0) | NO | | 0 | |
| class_1_working | bigint(21) | NO | | 0 | |
| class_1_vacant | decimal(33,0) | NO | | 0 | |
| class_2_sanctioned | decimal(32,0) | NO | | 0 | |
| class_2_working | bigint(21) | NO | | 0 | |
| class_2_vacant | decimal(33,0) | NO | | 0 | |
+--------------------+---------------+------+-----+---------+-------+

vw_sanctioned_working_by_hospital 模型如下:

class VwSanctionedWorkingByHospital < ActiveRecord::Base
self.table_name = 'vw_sanctioned_working_by_hospital'
belongs_to:hospital
end

但是我收到以下错误:

Showing /home/akash/hrmis/beauty4/app/views/hospitals/show.html.erb where line #11 raised:

undefined method `class_1_sanctioned' for #<ActiveRecord::Relation:0xb1e5bd0>
Extracted source (around line #11):

8: <div class="span4">
9: <dl class="dl-horizontal">
10: <dt><strong>class_1_sanctioned:</strong></dt>
11: <dd><%= @hospital.vw_sanctioned_working_by_hospitals.class_1_sanctioned %></dd>
12:
13: <dt><strong>Hospital Name:</strong></dt>
14: <dd><%= @hospital.hospital_name %></dd>

我哪里错了?我读过 db view 可以像只读表一样解释,那么问题是什么?

我的关联是正确的,一切似乎都很好,但我仍然无法呈现 class_1_sanctioned 列。

最佳答案

你有一个 has_many 关系:

has_many :vw_sanctioned_working_by_hospitals

这实际上返回一个关系而不是单个对象。您需要指定您想要的对象,例如

@hospital.vw_sanctioned_working_by_hospitals.first.class_1_sanctioned
@hospital.vw_sanctioned_working_by_hospitals.last.class_1_sanctioned
@hospital.vw_sanctioned_working_by_hospitals[123].class_1_sanctioned

或者(这更有可能是您想要的)您需要迭代关系:

<% @hospital.vw_sanctioned_working_by_hospitals.each do |vw_sanctioned| %>
<%= vw_sanctioned.class_1_sanctioned %>
<% end %>

关于mysql - Rails ActiveRecord::Relation 未定义方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15159040/

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