我有home_controller
並且裏面有[:index, :process_img]
動作。 我需要從行動:process_img
獲得整個html源:index
行動。需要訪問控制器中的代碼。在控制器中獲取erb模板的html代碼
class HomeController < ActionController::Base
def index
end
def process_img
index_html_code = "the html source of index action should be here"
end
end
我該如何做到這一點?提前致謝!
你可以嘗試'render_to_string'? https://apidock.com/rails/ActionController/Base/render_to_string –
@AjinkyaPisal沒有幫助不會導致我得到Missing模板錯誤,但我有我的應用程序中的模板。 –
@AjinkyaPisal修復了現在的問題!謝謝! –