gpt4 book ai didi

ruby-on-rails - Rails Controller - 继承自定义操作

转载 作者:行者123 更新时间:2023-12-04 15:44:25 25 4
gpt4 key购买 nike

我已经使用继承干掉了 Controller 代码。

class MastersController < ApplicationController
def index
...
...
end

...
...
end

class ItemsController < MastersController
end

现在我已经向 MastersController 添加了一个自定义操作
class MastersController < ApplicationController
def index
...
...
end

...
...

def clone
...
...
end
end

我已经添加了项目的路线
resources :items do
get :clone
end

现在,当我尝试访问 myapp.dev/items/1/clone 时,出现错误
AbstractController::ActionNotFound at /items/1/clone
The action 'clone' could not be found for ItemsController

Screenshot

如果我在 ItemsController 中添加“克隆”操作,错误就会消失。
class ItemsController < MastersController
def clone
...
...
end
end

如何在 Rails Controller 中抽象自定义操作?

最佳答案

你可以像这样使用它

   def clone
super
end

在您的 child Controller 中

关于ruby-on-rails - Rails Controller - 继承自定义操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22662702/

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