我用过:
render_to_string(:controller=>:controllerName,:action=>:actionName)
但这只给了我页眉和页脚的内容,而不是该特定页面的实际内容。
还有其他办法吗?
由于
答案 0 :(得分:1)
我用过
@var = render_to_string(:file => "view_folder/index", :layout => false).to_json
从render_to_string获取数据,它工作正常..
答案 1 :(得分:1)
@var = render_to_string(:template => "controller/action", :layout => false)