自定义表单助手
有没有一种方法可以创建自定义表单助手,这样
special_field_tag :object, :method
我就可以实现以下目标:
form.special_field :method
Is there a way that I can create a custom form helper so that instead of:
special_field_tag :object, :method
I can achieve something like:
form.special_field :method
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,您可以添加到 FormBuilder 类并访问传递到 form_for 的对象。我已经为很多事情做到了这一点:日期、时间、测量等。这是一个示例:
您可以像这样使用它:
Rails 创建了一些实例变量,您可以在这些辅助方法中访问它们:
我编写了 field_id 和 field_name 方法来在 HTML 输入元素上创建这些属性,就像常规助手所做的那样,我确信有一种方法可以结合Rails 使用的方法相同,但我还没有找到。
使用这些辅助方法可以做的事情是无限的,它们只是返回字符串。您可以在一个表格或页面中创建整个 HTML 表格或页面,但您最好有充分的理由这样做。
该文件应添加到 app/helpers 文件夹中
Yes, you can add to the FormBuilder class and get access to the object passed into the form_for. I've done this for a lot of things: dates, times, measurements, etc. Heres an example:
Which you can use like this:
There are some instance variables created by Rails that you can access in these helper methods:
I wrote the field_id and field_name methods to create these attributes on the HTML input elements the same way the regular helpers do, I'm sure there is a way to tie into the same methods that Rails uses, but I haven't found it yet.
The sky is the limit on what you can do with these helper methods, they simply return strings. You can create entire HTML tables or pages in one, but you better have a good reason to.
This file should be added in the app/helpers folder
@Tilendor,非常感谢您的指点。下面是一个
enum_select
表单标签助手的示例,它使用 Rails 4.1 枚举自动填充 select 标签的选项:最棘手的构造是
@object.class.send(name.to_s. pluralize)
,它生成可用值的哈希值(例如,Company.time_zones
)。将其放入helpers/application_helper.rb
使其自动可用。它的用法如下:@Tilendor, thanks so much for the pointers. Here is an example of an
enum_select
form tag helper that uses Rails 4.1 enums to automatically populate the options of a select tag:The trickiest construct is
@object.class.send(name.to_s.pluralize)
which produces a hash of available values (e.g.,Company.time_zones
). Putting it inhelpers/application_helper.rb
makes it automatically available. It is used like:我们的应用程序在文本字段中显示电话号码,我们想省略国内号码的国家/地区代码。我正在使用表单助手。在阅读了这篇文章和 Rails 源代码之后,我找到了这个解决方案:
我将其放在 app/helpers/application_helper.rb 上并像使用
text_field()
帮助器一样使用它。希望这对某人有帮助。Our app was displaying phone numbers in text fields, and we wanted to omit the country code for domestic numbers. I was using form helpers. After reading this and rails source a bit, i came to this solution:
I put this on app/helpers/application_helper.rb and use it like i use
text_field()
helper. Hope this helps someone.