新手铁路问题

发布于 2024-11-03 14:54:40 字数 213 浏览 1 评论 0原文

我有一个基本的 Rails 3 问题..

我的数据库中有一份工作列表,每项工作都与一个特定的位置相关联..简而言之,我有一个位置可以容纳许多工作..

我创建了脚手架工作和位置,并创建了适当的参考。

我想创建一个职位列表,这样当我单击其中一个职位时,我可以看到该位置所有职位的列表。

我怎样才能在 Rails 3 中做到这一点?

谢谢

i have a basic rails 3 question..

i have a list of jobs in my db and each job is tied to a particular location..in short i have one location to many jobs..

i have created scaffolding jobs and locations and created the appropriate references.

i want to create a list of jobs such that when i click on one of the jobs, i get to see a list of all the jobs in that location.

how can i do this in rails 3?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

书信已泛黄 2024-11-10 14:54:40

如果您有一个 Job 类

belongs_to :location

和一个 Location

has_many :jobs

那么,您可以通过 Then 访问一项作业所在位置的所有作业

@jobs = job.location.jobs

,根据您的设置详细信息,您可以在视图中执行类似以下操作:

<%= render @jobs %>

if you have a Job class with

belongs_to :location

and a Location with

has_many :jobs

Then you can access all jobs for the location of one job via

@jobs = job.location.jobs

Then, depending on the details of your setup, you can do something like this in a view:

<%= render @jobs %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文