gpt4 book ai didi

ruby-on-rails - Ruby on Rails 显示 Action 在 Controller 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:53 24 4
gpt4 key购买 nike

我使用脚手架来构建我的 RoR 应用程序,然后我添加了另一个名为 apply_configs 的 Controller 操作。它工作正常(我添加到 Controller 方法的所有操作都执行得很好,我可以从服务器上的日志中看出这一点)但是我无法让它在执行后呈现正确的页面。我在 Controller 文件中的 apply_configs 方法末尾添加了以下内容

respond_to do |format|
if @l2vpn.update_attributes(params[:l2vpn])
format.html { render action: "show", notice: 'L2vpn was successfully updated.' }
format.json { head :ok }
else
format.html { render action: "edit" }
format.json { render json: @l2vpn.errors, status: :unprocessable_entity }
end
end

在服务器上,我可以看到这些日志

Started GET "/l2vpns/apply_configs? <long list of params goes here> " for 172.24.67.151 at 2012-03-16 11:32:01 -0700
Processing by L2vpnsController#apply_configs as */*
Parameters: { <long comma separated list of params goes here> }
L2vpn Load (0.4ms) SELECT "l2vpns".* FROM "l2vpns" WHERE "l2vpns"."id" = ? LIMIT 1 [["id", 1]]
Rendered l2vpns/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 112ms (Views: 12.4ms | ActiveRecord: 1.2ms)

但实际上,与日志显示的不同,我的浏览器并没有显示show.html.erb的内容,浏览器页面没有变化。我的目标是在执行 apply_configs 后显示 show.html.erb。

任何人都知道如何实现这一目标,以及为什么使用上述配置它无法按预期工作?

jdl 评论后的更新代码

class L2vpnsController < ApplicationController
respond_to :js, :html, :json
# GET /l2vpns/1
# GET /l2vpns/1.json
def apply_configs
@l2vpn = L2vpn.find(params[:id])

<more code goes here>

flash[:notice] = "Configs applied successfully!"
respond_with(@l2vpn, :location => l2vpns_url)
end

<other controller action definitions go here>

end

最佳答案

核心问题是您在更新对象后没有进行重定向。看看this Railscast on Rails 3 controllers ,特别是处理 respond_with 的部分,它将为您完成大部分工作。

关于ruby-on-rails - Ruby on Rails 显示 Action 在 Controller 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9742855/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com