Rails JSON API模式不再显示响应数据

时间:2017-10-07 10:41:44

标签: ruby-on-rails

我之前可以通过浏览器测试查询并获得JSON响应。现在它只是显示:

enter image description here

我不知道我改变了什么。我的Ember前端能够获得数据。

看到回应很方便。

路线:

Rails.application.routes.draw do
  resources :platforms do
    resources :markets
    member do
      get 'populate_markets'
    end
  end
end

2 个答案:

答案 0 :(得分:0)

如果要查看JSON,则需要在浏览器中指定请求格式。

转到http://localhost:3000/platforms.json。只要配置为使用JSON进行响应,您将获得任何platforms_controller#index返回。

答案 1 :(得分:0)

上帝,我明白了。 Localhost坏了。使用ip地址127.0.0.1解决了这个问题。我不知道自从localhost工作以来我改变了什么。