9

デフォルトのヘッダーとして使用する 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

私が知らない他のオプションはありますか?

4

1 に答える 1

15

render layout: ""ブロックが必要な場合に使用します。

ブロックを使用render partial: ""しない場合に使用します。

どちらもローカルで動作し、事前に下線が引かれたファイルを探します。

于 2013-10-31T15:57:53.353 に答える