I try to use pjax-rails gem for the a project.
When I use the redirect method from the gem. The browser renders the response as text. I asume text/javascript instead of script/javascript.
This is how my controller looks (notice redirect_to_pjax):
def create
@contact = Contact.new params[:contact]
if @contact.save
flash[:notice] = "Successfully added contact"
redirect_pjax_to :show,@contact
end
this is the gem https://github.com/rails/pjax_rails
This is the original implementation of the method "redirect_pjax_to" I think the magic happens here.... (taken from github)
private
def redirect_pjax_to(action, url = nil)
new_url = url_for(url ? url : { action: action })
render js: <<-EJS
if (!window.history || !window.history.pushState) {
window.location.href = '#{new_url}';
} else {
$('[data-pjax-container]').html(#{render_to_string("#{action}.html.erb", layout: false).to_json});
$(document).trigger('end.pjax');
var title = $.trim($('[data-pjax-container]').find('title').remove().text());
if (title) document.title = title;
window.history.pushState({}, document.title, '#{new_url}');
}
EJS
end
I asume that render :js needs a content_type here...
Does anyone has the same problems? Or better any solutions?