我想将以下 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
如何使用 slim 正确挽救异常?