如何通过关联在使用 has_many 的模型上使用 ActiveAdmin?
我在我的项目中使用 ActiveAdmin gem。
我有两个模型通过关联使用 has_many 。数据库架构看起来与 RailsGuide 中的示例完全相同。 http://guides.rubyonrails.org/association_basics.html#the-has_many -通过关联
(来源:rubyonrails.org)
如何使用 ActiveAdmin ...
- 在医生页面显示每位患者的预约日期?
- 在医生页面编辑每位患者的预约日期?
谢谢大家。 :)
I am using ActiveAdmin gem in my project.
I have 2 models using has_many through association. The database schema looks exactly the same as the example in RailsGuide. http://guides.rubyonrails.org/association_basics.html#the-has_many-through-association
(source: rubyonrails.org)
How can I use ActiveAdmin to ...
- show appointment date of each patient in physicians page?
- edit appointment date of each patient in physicians page?
Thanks all. :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
对于 1)
对于 2)
For 1)
For 2)
在回答 tomblomfield 评论中的后续问题:
在 AA ActiveAdmin.register 模型 do 块中尝试以下操作:
中延迟加载每个索引页的所有关联
这应该在单独的查询HTH
In answer tomblomfield follow up question in comments:
Try the following in your AA ActiveAdmin.register Model do block:
This should lazy load all your associations for each index page in a separate query
HTH
应该可以解决N+1查询问题。
It should solve the N+1 query problem.
这对我来说是工作(选择)
It's work for me (with chosen)
@monfresh @tomblomfield 你可以
在医生模型中
做...或者,我不确定你是否可以将它与 formtastic 一起使用,但你可以使用类似的东西使范围可选
,并且
appointment. Patient
不会不再是n+1@monfresh @tomblomfield you can do
in the physicians model
...or, I'm not sure if you can use it with formtastic but you could make the scope optional with something like
and
appointment.patient
wont n+1 anymore如果您想在面板行中显示多个字段,您可以使用以下视图:
要将其放入您的重编辑表单中,首先将约会 ID 放入允许列表中:
添加与表单有很多关系
如果没有编码错误,应该可以工作。
If you would like show multiple field in a panel row you can use following view:
To place it in you redit form first put appointment_ids to permitted list:
Add has many relationship to the form
Should work if there is no coding error.
关于#2,它应该是这样的:
关于标题: - 它可以是错误的或一些标签(字符串)
关于allow_destroy: - 你可以设置它检查用户管理员权限如此处
重要 所示- 在医师模型,请确保
在活动管理模型文件 - admin\Physicians.rb 中设置:
Regarding #2, it should be like this:
Regarding the heading: - it can be false or some label (string)
Regarding the allow_destroy: - you can set it check for the user Administrator privilege's as can seen here
Important - In the Physician model, make sure to have
And, in the active admin model file - admin\physicians.rb - set this: