Rails の views/comments/_comments パーシャル内に次のコードがあります。
<%= render :partial => 'comments/#{@type}' %>
@type
また、ローカルを介して変数を渡していますが、次のようになります。
Missing partial comments/#{@type}
次のように置き換えると機能します。
<%= render :partial => 'comments/post' %>
so@type
は私のビュー内では評価されません。
誰かがそれを説明できますか?