我有一个有很多代码重复的控制器,例如:
class PostController < ApplicationController
def action1
end
...
def actionN
end
end
基本上每个动作都做这样的事情:
def action
@post = Post.find(params[:id])
if @post.action(current_user)
flash[:notice] = "#{custom string for this action}"
else
flash[:notice] = "Problem with your request"
end
redirect_to root_url
end
我想到了 ApplicationController 中的一个方法,它接受一个符号数组并生成其他方法,例如:
def self.action_for(*args)
args.each do |method, string|
define_method method.to_sym do
@post = Post.find(params[:id])
if @post.send method.to_sym
flash[:notice] = string
else
flash[:notice] = "Problem with your request"
end
redirect_to root_url
end
end
end
并调用 PostController:
action_for [:action1, "Congratulations!"], [:action2, "Cool action!"] ..
我认为这个解决方案很难看,它使 ApplicationController 变脏并允许其他控制器调用我的操作。
有解决代码重复问题的想法吗?