Rails Haml 复选框

发布于 2024-12-26 00:38:20 字数 437 浏览 0 评论 0原文

愚蠢的问题,我如何用 haml 重写我的代码?

<% for role in Role.find(:all) %>
<div>
  <%= check_box_tag "user[role_ids][]", role.id, @user.roles.include?(role) %>
  <%= role.name %>
</div>

我可以在哪里找到 haml 示例,例如 http://apidock.com/rails/ActionView/助手/FormTagHelper/check_box_tag 谢谢!

stupid questions, how I can rewrite my code in haml?

<% for role in Role.find(:all) %>
<div>
  <%= check_box_tag "user[role_ids][]", role.id, @user.roles.include?(role) %>
  <%= role.name %>
</div>

And where I can found haml examples, like http://apidock.com/rails/ActionView/Helpers/FormTagHelper/check_box_tag
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

香橙ぽ 2025-01-02 00:38:21

也许还不算太晚,但您始终可以运行 html2haml 命令。类似于: html2haml app/views/layout/application.html.erb app/views/layouts/application.html.haml

Maybe is not too late, but always you could run the html2haml command. Something like: html2haml app/views/layout/application.html.erb app/views/layouts/application.html.haml

伴我老 2025-01-02 00:38:20
- for role in Role.find(:all)
  %div
    = check_box_tag "user[role_ids][]", role.id, @user.roles.include?(role)
    = role.name

我刚刚使用 http://html2haml.heroku.com/

- for role in Role.find(:all)
  %div
    = check_box_tag "user[role_ids][]", role.id, @user.roles.include?(role)
    = role.name

I just used http://html2haml.heroku.com/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文