私はhome_controller
を持っており、[:index, :process_img]
のアクションがあります。 :process_img
のアクションから、:index
アクションのHTMLソース全体を取得する必要があります。コントローラ内のそのコードにアクセスする必要があります。コントローラーで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いいえ、私はテンプレートの不足のエラーが発生している原因には役立ちませんが、私は自分のアプリケーションでそのテンプレートを持っています。 –
@AjinkyaPisalが問題を修正しました。ありがとう! –