gpt4 book ai didi

mysql - 我如何在某个表中显示某个属性而不显示当前用户 RAILS 4 的所有属性

转载 作者:行者123 更新时间:2023-11-29 00:00:54 25 4
gpt4 key购买 nike

我有一个 studentschool 数据库绑定(bind)到我的 rails 项目 我有 student 表的这些属性:

[id,fname,lname,created_at,updated_at,school_id,user_id]

我的学校表有这些属性

[id,name,address,franchise_id,created_at,updated_at]

到目前为止,我正在尝试显示当前用户可能拥有的每个学生的学校 name。但是当我运行它时,它会在循环的每次迭代中显示该用户所有学生的所有学校。这是我的索引操作方法,魔术应该会发生。

  @child = Student.where(user_id:current_user.id).pluck(:school_id)
@schoolname = School.where(id:@child).pluck(:name)

在我看来我的索引页:

 <div class="container">
<h1><font color="white"><b>My students</font></b></h1>

<table class="table table-striped">
<thead>
<tr>
<th><font color="white"><b>Id</font></b></th>
<th><font color="white"><b>Fname</font></b></th>
<th><font color="white"><b>Lname</font></b></th>
<th><font color="white"><b>School</font></b></th>
<th><font color="white"><b>manage</font></b></th>
<th colspan="3"></th>
</tr>
</thead>

<tbody>
<% @students.each do |student| %>
<tr>
<td><font color="white"><b><%= student.id %></font></b></td>
<td><font color="white"><b><%= student.fname %></font></b></td>
<td><font color="white"><b><%= student.lname %></font></b></td>
<td><font color="white"><b><%= @schoolname %></font></b></td>
<td><%= link_to 'Show', student %>
<%= link_to 'Edit', edit_student_path(student) %>
<%= link_to 'Destroy', student, method: :delete, data: { confirm:
'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>

<br>

<b><%= link_to 'Add Student', add_students_path(@student),
{:style=>'color:#FFFFFF;'} %></b><br/>

<b> <%= link_to 'New Student', new_student_path,
{:style=>'color:#FFFFFF;'} %></b>
</div>

我的模型是空的

最佳答案

在你的 View 循环中写下@schoolname,而不是student.school.name如果您的一对多关系有效,那么这应该有效。

关于mysql - 我如何在某个表中显示某个属性而不显示当前用户 RAILS 4 的所有属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29932405/

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