如何传递未保存的模型以使用decent_exposure查看?
我最近刚刚开始使用 decent_exposure ,当我尝试在中显示模型验证错误消息时遇到问题的观点。除了使用渲染方法和实例变量来绕过decent_exposure(回到旧方法)之外,还有更干净的方法吗?
谢谢!
I just recently started using decent_exposure and I run into a problem when I try to display the model validation error messages in the view. Is there a cleaner way of doing this other than using the render method and instance variables to bypass decent_exposure (back to the old ways)?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
form_for
,则可以将公开的资源作为实例参数传递,然后调用f.error_messages
。那里确实没有太大区别。也许我错过了重点。If you're using
form_for
, you can pass the exposed resource as the instance argument and then callf.error_messages
. There's really not much of a difference there. Maybe I missed the point though.