Rails API响应体是字符串而不是json

时间:2018-01-08 15:34:02

标签: ruby-on-rails json rest

我的代码中有以下REST API调用,如果错误则返回此错误

def get_token 
  responseObject = {
      message: "Error",
      errors: ["User does not exist"]
  }

  render status: 403, json: responseObject
end

问题在于我的response.json(),我得到了这个 enter image description here

因此,当我尝试在我的代码response.json()。错误中执行此操作时,我总是得到未定义,因为它不会在我的身体中看到我的响应为json。

其实不知道如何解决这个烂摊子。

由于

0 个答案:

没有答案