Block comments in html.erb templates in rails

前端 未结 16 2160
北荒
北荒 2020-12-07 09:10

How do you comment out html mixed with ruby code?

some text <% ... %> more text <%= ... %>
something else
<% ... %>

In js

16条回答
  •  失恋的感觉
    2020-12-07 10:04

    To comment out erb tags use the ruby comment hash symbol before the = sign in the opening tag

    This is some text I want to keep <%= @some_object.some_attribute %>

    I want to keep this text but comment out the erb tag <%#= @some_object.another_attribute %>

提交回复
热议问题