意外的令牌:在heroku上的JSON中,在本地运行正常

时间:2015-04-19 01:02:39

标签: ruby-on-rails json heroku

有问题的一行:

render(json: {'token': token} ) and return
  

/app/app/controllers/authentications_controller.rb:29:语法错误,意外':',expecting =>                   渲染(json:{' token':token})并返回

我可以

rails s

当地就好了。

是什么给出了?

1 个答案:

答案 0 :(得分:0)

{'token': token}在Ruby中不起作用,你必须使用{'token' => token}作为字符串的键。