デフォルトのヘッダーとして使用する Haml-partial を作成しました。これをレンダリングするとき、オプションで、デフォルト コンテンツの一部を置き換えるブロックを指定します。
私は複数のことを試しました:
render partial: "partial", capture: do
# Don't really know why I tried this, Syntax error ofcourse.
render partial: "partial" do
# 'nil' is not an ActiveModel-compatible object. It must implement :to_partial_path.
render layout: "partial" do
# Works, but:
render layout: "partial"
# You invoked render but did not give any of :partial, :template, :inline, :file or :text option.
# So, it always needs the block
私が知らない他のオプションはありますか?