新手铁路问题
我有一个基本的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有一个 Job 类
和一个 Location
那么,您可以通过 Then 访问一项作业所在位置的所有作业
,根据您的设置详细信息,您可以在视图中执行类似以下操作:
if you have a Job class with
and a Location with
Then you can access all jobs for the location of one job via
Then, depending on the details of your setup, you can do something like this in a view: