我在解决这个问题时遇到了问题。
= link_to "Bounced", bounced_email_path(@email)
Bounces
%span
= @email.bounces_count
我想要链接标记中的Bounces
,span和其他行。
以上代码最终出现错误:
语法错误,意外的kENSURE,期待$ end“。
答案 0 :(得分:1)
要使用link_to的阻止形式,您必须删除body
参数("Bounced"
)并使用do
关键字启动该阻止:
= link_to bounced_email_path(@email) do
Bounces
%span
= @email.bounces_count