我有一个
Ruby on Rails和ActiveAdmin应用程序.除了添加和注册几个模型之外,我基本上没有更改任何默认配置.
我想用GET / heartbeat这样的路由启用我的应用程序,并用一个简单的字符串响应客户端/用户.我想知道我怎么能做以下步骤:
>将自定义路由添加到routes.rb文件中.
>在app / controllers路径下添加自定义控制器.
>实施自定义操作并直接响应用户,无需任何视图.
解决方法
routes.rb中:
get 'heartbeat' => "custom_controller#heartbeat"
custom_controller.rb:
class CustomController < ApplicationController def heartbeat render inline: "Some string to the client/user" end end