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.
在 rails 3 中是否有可能有一个指向控制器操作的链接,但不渲染任何东西?假设我只想调用几个 rake 任务。这可能吗?
您可以使用以下方法渲染任何内容:
render :nothing => true
在控制器中的操作结束时。
调用该方法并在其末尾添加一个 redirect_to 或渲染到您要查看的站点。不要忘记将此添加到您的路线中。您还可以使用 Flash 消息向用户显示发生了什么事 :)