我的招摇指数DSL正在使用Math.abs(x - y)
生成的api/v1/users.json
进行回复。
rake swagger:docs
:
Api::V1::UsersController
当我尝试去实际的api文档并运行 swagger_api :index do
summary 'Returns list of users'
notes '/api/v1/users'
end
def index
@users = User.all
render(json: { users: ActiveModel::ArraySerializer.new(@users, each_serializer: Api::V1::UserSerializer) })
end
调用(“试一试!”)时,我得到了整个用户api控制器的公共api定义:
/api/v1/users.json
此外,当我在Postman中尝试调用时,它会返回一个像我期望的用户数组。