当我在 Cloud9 IDE 上运行我的代码时,会出现下一个错误:
Missing partial submissions/_submission with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: * "/usr/local/rvm/gems/ruby-2.3.0/gems/web-console-2.0.0.beta3/lib/action_dispatch/templates" * "/home/ubuntu/workspace/app/views" * "/usr/local/rvm/gems/ruby-2.3.0/gems/web-console-2.0.0.beta3/app/views"
我有一个提交控制器,我的创建代码是这样的:
def create
@submission = Submission.new(submission_params)
respond_to do |format|
if @submission.save
format.html { redirect_to root_path}
format.json { render :show, status: :created, location: @submission }
else
format.html { render :new }
format.json { render json: @submission.errors, status: :unprocessable_entity }
end
end
end
我不知道哪个是我的错误以及在何处找到它。
另外,完整的堆叠文字http://pastebin.com/YnyQeetU
index.html.erb http://pastebin.com/fZbXd0Wk
的代码答案 0 :(得分:1)
虽然该行在HTML中已注释,但仍在执行服务器标记。尝试使用<%#= link_to 'New Submission', new_submission_path %>
对服务器标记进行评论。这将停止执行服务器标签,您将不会收到错误。
答案 1 :(得分:1)
这行代码导致问题。
2016/04/25 12:59:10 [error] 31336#0: *1 "/var/www/web1/htdocs/my-perma-link/index.php" is not found (2: No such file or directory), client: xx.xxx.xxx.xx, server: example.org, request: "GET /my-perma-link/ HTTP/1.1", host: "example.org"
如果您不想渲染部分,可以按如下方式对其进行评论:
<!--<%= render @submissions %>-->
#<!-- --> This is used to comment an HTML tag