以下のerbコードをslimに変換したいと思います。
<% begin %>
<%= some_function %>
<% rescue Exception %>
<%= some_other_function %>
<% end%>
私のアプローチは次のとおりです。
- begin
= some_function
- rescue Exception
= some_other_function
しかし、それはエラーになります:
index.slim:34: syntax error, unexpected keyword_ensure, expecting $end
スリムを使用して例外を適切にレスキューするにはどうすればよいですか?