ruby-on-rails – Rails:如何为redirect_to设置json格式

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails:如何为redirect_to设置json格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我怎样才能重定向到html格式而不是json?

我想要这样的东西:

redirect_to user_path(@user),format: :json

但这不起作用,我仍然重定向到html路径.

解决方法

我读了一些apidock ……这很简单.我应该在路径助手中指定格式,如下所示:
redirect_to user_path(@user,format: :json)
原文链接:https://www.f2er.com/ruby/271386.html

猜你在找的Ruby相关文章