这听起来很奇怪,但请听我说……我需要能够向我的其他控制器之一发出等效的 POST 请求。这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
也许我想太多了,但我不知道该怎么做。