如何调试/测试来自 Rails 控制器的 json 响应?

发布于 2024-09-30 09:08:41 字数 494 浏览 2 评论 0原文

我在我的 Rails 3 控制器中编写了一个简单的 jquery 响应,我只想测试一下返回的结果(不是自动化测试)。

我的代码如下所示:

class AppointmentsController < ApplicationController
def jsonlist
  @appointments = Appointment.find(:all)
  render :json => @appointments
end

我可以从如下 URL 访问此代码: http://localhost:3000/appointments/jsonlist< /a>?

当我尝试时,我收到此错误:

找不到预约对象 ID=jsonlist

I have written a simple jquery response in my rails 3 controller, I just want to test to see the result this returns (not automated testing).

My code looks like this:

class AppointmentsController < ApplicationController
def jsonlist
  @appointments = Appointment.find(:all)
  render :json => @appointments
end

Can I access this from a URL like: http://localhost:3000/appointments/jsonlist?

When I try, I get this error:

Couldn't find Appointment with
ID=jsonlist

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦醒灬来后我 2024-10-07 09:08:41

您收到的错误似乎不是来自该操作,它似乎是您定义为 show 操作的路由冲突。在定义 show 的路由之前,尝试定义 jsonlist 的路由。

The error you're getting does not appear to come from that action, it appears to be a conflict in your routes for whatever you have defined as your show action. Try defining your route for jsonlist before you define your route for show.

_蜘蛛 2024-10-07 09:08:41

调试来自控制器的 json 响应

render json: JSON.pretty_generate(JSON.parse(@appointments.to_json))

to debug a json response from your controller

render json: JSON.pretty_generate(JSON.parse(@appointments.to_json))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文