RoR投票系统在本地工作,但在Heroku上部署时则不行

时间:2012-05-25 10:12:45

标签: ruby-on-rails sqlite postgresql heroku

我的应用实现了用户可以投票并“投票”的“想法”。它在当地工作正常。当推送到Heroku时,用户可以投票,但“未投票”的操作不起作用并产生“我们很抱歉,但出了点问题。”来自herokuapp.com的页面。

我检查了heroku日志,错误如下:

2012-05-25T09:47:18+00:00 app[web.1]: Started POST "/ideas/remove_vote/1/1" for 88.171.195.199 at 2012-05-25 09:47:18 +0000
2012-05-25T09:47:18+00:00 app[web.1]: Processing by IdeasController#remove_vote as HTML
2012-05-25T09:47:18+00:00 app[web.1]:   Parameters: {"authenticity_token"=>"mJ5daJfBhf+823VTg9C1+YSBdqVFTFPuJWiO2cIx6iQ=", "u_id"=>"1", "i_id"=>"1"}
2012-05-25T09:47:18+00:00 app[web.1]: Completed 500 Internal Server Error in 8ms
2012-05-25T09:47:18+00:00 app[web.1]: : DELETE FROM "votes" WHERE "votes"."" = $1):
2012-05-25T09:47:18+00:00 app[web.1]:   app/controllers/ideas_controller.rb:85:in `remove_vote'
2012-05-25T09:47:18+00:00 app[web.1]: 
2012-05-25T09:47:18+00:00 app[web.1]: ActiveRecord::StatementInvalid (PG::Error: ERROR:  zero-length delimited identifier at or near """"
2012-05-25T09:47:18+00:00 app[web.1]:                                           ^
2012-05-25T09:47:18+00:00 app[web.1]: LINE 1: DELETE FROM "votes" WHERE "votes"."" = $1
2012-05-25T09:47:18+00:00 app[web.1]: 
2012-05-25T09:47:18+00:00 app[web.1]: cache: [POST /ideas/remove_vote/1/1] invalidate, pass
2012-05-25T09:47:18+00:00 app[web.1]: 

ideas_controller.rb中的remove_vote方法如下:

def remove_vote
  @vote = Vote.find_by_user_id_and_idea_id(params[:u_id], params[:i_id])
  @vote.destroy
  redirect_to ideas_path
end

你们有没有想法解决这个问题?我怀疑它与本地数据库是SQLite并且Heroku上的生产数据库是PostgreSQL这一事实有关,但我觉得奇怪的是添加投票是有效的,而删除投票却没有。

2 个答案:

答案 0 :(得分:2)

查看该日志中发布的删除语句:DELETE FROM "votes" WHERE "votes"."" = $1

where子句在谈论什么专栏?它应该谈什么专栏?投票模型中是否有任何内容可以解释它不使用id列?

答案 1 :(得分:1)

当您遇到这样的问题时,最好使用postgres在本地配置/运行您的应用程序。这将允许您在本地调试这些问题,而不是试图“猜测”Heroku上的问题。

这是一个关于让postgres在本地运行的良好的轨道广播。

http://railscasts.com/episodes/342-migrating-to-postgresql