Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个类似这样的控制器方法:
def suggestions # Stuff render :json => {"success" => true'} end
渲染响应后是否可以运行方法?如果可能的话,我不想阻止前端。
谢谢
是的,该方法将继续执行直到结束。您真正需要注意的唯一问题是再次意外调用渲染。您只能调用一次渲染。