我的 Rails 视图/注释/_comments 部分中有这段代码:
<%= render :partial => 'comments/#{@type}' %>
另外,我@type
通过本地传递变量,但我得到:
Missing partial comments/#{@type}
如果我用以下内容替换它,它会起作用:
<%= render :partial => 'comments/post' %>
所以@type
在我的观点中不予评价。
有人可以解释一下吗?
我的 Rails 视图/注释/_comments 部分中有这段代码:
<%= render :partial => 'comments/#{@type}' %>
另外,我@type
通过本地传递变量,但我得到:
Missing partial comments/#{@type}
如果我用以下内容替换它,它会起作用:
<%= render :partial => 'comments/post' %>
所以@type
在我的观点中不予评价。
有人可以解释一下吗?