アプリで次のことをしたい: 自分でタイトルを設定しない場合 - タイトルを設定した場合、タイトルは「アプリ」を表示します -> <%= タイトル「ようこそ」%> タイトルは「ようこそ」を表示します
私は:index.html.erb
<%= title "Welcome controller" %>
applicaton.html.erb:
<!DOCTYPE html>
<html>
<head>
<title><%= yield(:title) %></title>
アプリケーション ヘルパー:
module ApplicationHelper
def title(page_title)
content_for(:title) { page_title }
end
end
私はそのようなものが欲しい:
<title><%= yield(:title) || "App" %></title>
しかし、それはうまくいきません - なぜですか?(表示 -> htp://local....)