我想扫描我的 erb 文件以查找特定的自定义 HTML 标签(我已经完成了这部分),然后在渲染之前,拦截这些标签并替换它们的 html 输出。我在 RAILS 中找不到与此类活动相关的任何信息。也许我没有找对地方。
问问题
1902 次
1 回答
2
也许你可以这样做:
class PostsController < ApplicationController
acts_as_special
def show
@post = Post.find(params[:id])
respond_to do |format|
format.html { my_renderer }
end
end
end
并写一个插件或某事:
# Module to Extend a given Controller with the acts_as_special methods
module MyRenderer
def self.included(base)
base.extend(ClassMethods)
end
module ClassMethods
def acts_as_special
include MyRenderer::InstanceMethods
end
end
module InstanceMethods
def my_renderer
.. do sth with the code ....
render :template => ...
end
end
end
ActionController::Base.class_eval do
include MyRenderer
end
好吧,您不需要编写插件,您必须使“您的”渲染方法可用于控制器。
如果您有不同/更好的方法,请告诉我!
于 2010-08-25T14:55:14.183 回答