1

我仍在学习 Ruby,并在我的 RoR 应用程序上使用此代码:

<title><%= content_for?(:title) ? yield(:title):"" %> - Mysite</title>

我想添加另一个静态词," - "或者" | ",在yield(:title)。怎么做?

4

1 回答 1

2
<title><%= content_for?(:title) ? "#{yield(:title)} -" : "" %> - Mysite</title>
于 2013-03-02T06:42:16.527 回答