Is it possible to have rails render html into a hash instead of to the client?
Something like this:
@obj = {
"foo" => Bar.find(1)
"html" => (render :partial => "yatzhee")
}
render :json => @obj.to_json
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
render_to_stringtakes all the same arguments asrenderbut returns a string. You can then put that in a hash or do anything you want with that.