14

你如何用苗条的模板语言编写以下内容?

<p>Join the <a href="">Google group</a> and let us know what you think, or what other features you’d like to see.</p>

我尝试了以下方法:

p
  ' Join the
  a href="" Google Group
  ' and let us know what you think, or what other features you’d like to see

但这不起作用,因为“组”和“和”这两个词之间没有空格。

4

2 回答 2

21

显然您可以在引号后添加额外的空格:

p
  ' Join the
  a href="" Google Group
  '  and let us know what you think, or what other features you’d like to see
于 2011-09-27T13:46:55.413 回答
8

你可以做

 p This is a paragraph with a link #{link_to 'embedded', 'http://google.com'}.

Rails 标签助手只是方法,因此您可以将该逻辑应用于视图中的其他方法。

于 2015-08-14T02:47:22.387 回答