如何使用 formattastic 编写无资源表单
我在使用 formattastic 创建以下内容时遇到问题。这是一个简单的形式,但它不是基于完整的资源,只是我想发送的查询字符串参数。
# index.html.haml
...
= form_tag resources_path, :method => 'get' do |f|
= label_tag 'filter', 'Filter'
= text_field_tag(:filter, params[:filter])
= submit_tag('Go', :name => nil)
Formtastic 在这里可能有点矫枉过正,但如果可能的话,最好使用一致的语义。
你如何将上面的内容翻译成格式语法?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你看到这些 RailsCast 了吗:
http://railscasts.com/episodes/184-formtastic-part -1
http://railscasts.com/episodes/185-formtastic-part-2
https://github.com/justinfrench/formtastic/wiki/4-Formtastic-Options
应该是这样的:
或者这样:
然后运行
rails g formtastic/stylesheets
并将它们添加到您的样式表/资产管道中。您还需要在应用程序布局中包含这些额外的 Formtastic 样式表。
请查看上面的 RailsCasts 了解详细信息
did you see these RailsCasts:
http://railscasts.com/episodes/184-formtastic-part-1
http://railscasts.com/episodes/185-formtastic-part-2
https://github.com/justinfrench/formtastic/wiki/4-Formtastic-Options
should be something like this:
or this:
Then run
rails g formtastic/stylesheets
and add them to your stylesheets / asset pipeline.You'll also need to include these extra Formtastic stylesheets in your application layout.
Please check the RailsCasts above for details