我在 clipsController 中执行这段代码:
def destroy
@clip = Clip.find(params[:id])
@clip.destroy
respond_to do |format|
format.html {redirect_to request.referer, notice: "Attachment deleted."}
format.js {
@pmdocument = @clip.attachable
render action: "pmdocuments/show"
}
end
end
这应该呈现位于 pmdocuments 中的名为 show.js.erb 的模板,但相反,我收到此错误消息:
ActionView::MissingTemplate (Missing template clips/pmdocuments/show,
application/pmdocuments/show with {:locale=>[:en], :formats=>[:js, :html]
, :handlers=>[:erb, :builder, :coffee, :haml]}. Searched in:
怎么了?