这样做会很奇怪,但听我说......。 我需要能够向我其他一名控制人员提出相等的《禁止杀伤人员地雷行动计划》要求。 <代码>SimpleController基本上是一个更精确的管制器的简化版本。 我如何能够适当地这样做?
class VerboseController < ApplicationController
def create
# lots of required params
end
end
class SimpleController < ApplicationController
def create
# prepare the params required for VerboseController.create
# now call the VerboseController.create with the new params
end
end
也许我对这一点过于思考,但我不知道如何这样做。