Railsドキュメント

コンテンツがまだキャプチャされていないかどうかをチェック

適応バージョン

説明

content_forを使用してコンテンツがまだキャプチャされていないかどうかをチェック

使い方

content_for?(名前)

<%# This is the layout %>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>My Website</title>
  <%= yield :script %>
</head>
<body class="<%= content_for?(:right_col) ? 'two-column' : 'one-column' %>">
  <%= yield %>
  <%= yield :right_col %>
</body>
</html>

ソースコード