将 Haml 转换为 erb 错误

Posted

技术标签:

【中文标题】将 Haml 转换为 erb 错误【英文标题】:Converting Haml to erb error 【发布时间】:2013-08-13 18:44:18 【问题描述】:

您好,我正在尝试将 haml 转换为 erb,不知道哪里出错了,以下是我的 HAML 代码

%h1 All Movies

  %table#movies
    %thead
      %tr
        %th:class => ('hilite' if @sort == 'title') 
= link_to 'Movie Title', movies_path(:sort_param => 'title'), :id => 'title_header'
        %th:class => ('hilite' if @sort == 'release_date') 
= link_to 'Release Date', movies_path(:sort_param => 'release_date'), :id=> 'release_date_header'
  %th Release Date
  %th More Info
  %th Edit Info
%tbody
- @movies.each do |movie|
  %tr
    %td= movie.title
    %td= movie.rating
    %td= movie.release_date
    %td= link_to "More about #movie.title", movie_path(movie) 
    %td= link_to "Edit Movie", edit_movie_path(movie)

= link_to 'ADD NEW MOVIE', new_movie_path

下面是我的erb代码

<h1> All Movies </h1>

<table id='movies'>
<thead>
<tr>
  <th class ='hilite'><%= if @sort == 'title'
     link_to movies_path(:sort_param => 'title'), :id => 'title_header'
end %></th>
  <th class = 'hilite'><%=if @sort == 'release_date'
     link_to movies_path(:sort_param => 'release_date'), :id=> 'release_date_header' end %> </th>
  <th> Release Date </th>
  <th> More Info </th>
  <th> Edit Info </th>
</tr>
</thead>
<tbody>
  <%= @movies.each do |movie| %>
      <tr>
         <td><%= movie.title %> </td>
         <td><%= movie.rating %> </td>
         <td><%= movie.release_date %> </td>
         <td><%= link_to "More about #movie.title", movie_path(movie) %> 
         <td><%= link_to "Edit Movie", edit_movie_path(movie) %></td>
  </tr>
   <%= end %>
 <%= link_to 'ADD NEW MOVIE', new_movie_path %>

 </tbody>   
 </table>

这是我得到的错误,

appname/app/views/movies/index.html.erb:25: syntax error, unexpected keyword_end
     ');@output_buffer.append= ( end );@output_buffer.safe_concat('
                                    ^
appname/app/views/movies/index.html.erb:30: syntax error, unexpected keyword_ensure, expecting ')'
appname/app/views/movies/index.html.erb:32: syntax error, unexpected keyword_end, expecting ')'

【问题讨论】:

【参考方案1】:

问题似乎是您在each 呼叫和end 上使用&lt;%=。从两者中删除等号=,如下所示:

<% @movies.each do |movie| %> 
  <tr>
     <td><%= movie.title %> </td>
     <td><%= movie.rating %> </td>
     <td><%= movie.release_date %> </td>
     <td><%= link_to "More about #movie.title", movie_path(movie) %> 
     <td><%= link_to "Edit Movie", edit_movie_path(movie) %></td>
   </tr>
<% end %> 

请注意,&lt;%= %&gt; 用于打印它们之间的内容。

补充:

此外,当您使用一个衬垫 if 语句时,就像您使用的那样,即 &lt;%= if ...,您需要使用 if...then...end 语法,如下所示:

<th class ='hilite'><%= if @sort == 'title' then link_to movies_path(:sort_param => 'title'), :id => 'title_header' end %></th>
<th class = 'hilite'><%= if @sort == 'release_date' then link_to movies_path(:sort_param => 'release_date'), :id=> 'release_date_header' end %></th>

【讨论】:

我无法在 erb 中添加标题“电影标题”名称,= link_to '电影标题', movies_path(:sort_param => 'title'), :id => 'title_header' %th :class=> ('hilite' if @sort == 'release_date') 你能帮我把它添加到 erb 中吗

以上是关于将 Haml 转换为 erb 错误的主要内容,如果未能解决你的问题,请参考以下文章

Haml 到 Erb 手动转换

有没有好的 HAML -> ERB/H​​TML 转换器?

在 Rails 中使用 HAML 而不是 ERB 时 CSS 未加载 (404)

将 .rhtml 视图转换为 .html.erb 等

Rails 3.2 - haml vs. erb。haml是否更快?(2012年2月)

哪种 Java HTML 模板技术的工作方式最接近 Ruby (erb/haml)?