标签: ruby-on-rails ruby
我还在学习Ruby并在我的RoR应用程序中使用此代码:
<title><%= content_for?(:title) ? yield(:title):"" %> - Mysite</title>
我想在" - "中添加另一个静态字" | "或yield(:title)。怎么做?
" - "
" | "
yield(:title)
答案 0 :(得分:2)
<title><%= content_for?(:title) ? "#{yield(:title)} -" : "" %> - Mysite</title>