gpt4 book ai didi

ruby-on-rails - 将我的应用程序部署到 Heroku 时出现 500 错误

转载 作者:行者123 更新时间:2023-11-29 12:38:47 26 4
gpt4 key购买 nike

当我尝试将我的应用程序部署到 Heroku 时出现 500 错误(它在我的本地主机上运行良好)。不知道为什么会这样。

我该如何解决?错误详细信息如下...

错误详情

2012-01-03T10:33:49+00:00 app[web.1]: Started GET "/" for 

2012-01-03T10:33:49+00:00 app[web.1]: Processing by PagesController#home as HTML
2012-01-03T10:33:49+00:00 app[web.1]:
2012-01-03T10:33:49+00:00 app[web.1]: Completed in 15ms
2012-01-03T10:33:49+00:00 app[web.1]:
2012-01-03T10:33:49+00:00 app[web.1]: app/controllers/pages_controller.rb:7:in `home'
2012-01-03T10:33:49+00:00 app[web.1]: ActiveRecord::StatementInvalid (PGError: ERROR: syntax error at or near "["
2012-01-03T10:33:49+00:00 app[web.1]: : SELECT "posts".* FROM "posts" WHERE (user_id IN ([]) OR user_id = 2) ORDER BY posts.created_at DESC LIMIT 30 OFFSET 0):
2012-01-03T10:33:49+00:00 app[web.1]:
2012-01-03T10:33:49+00:00 app[web.1]: LINE 1: ...sts".* FROM "posts" WHERE (user_id IN ([]) OR use...
2012-01-03T10:33:49+00:00 app[web.1]:

页面 Controller

class PagesController < ApplicationController

def home
@title = "Home"
if signed_in?
@post = Post.new
@feed_items = current_user.feed.paginate(:page => params[:page])
end
end

用户模型

class User < ActiveRecord::Base

has_many :posts, :dependent => :destroy

has_many :relationships, :foreign_key => "follower_id",
:dependent => :destroy
has_many :reverse_relationships, :foreign_key => "followed_id",
:class_name => "Relationship",
:dependent => :destroy

has_many :following, :through => :relationships, :source => :followed
has_many :followers, :through => :reverse_relationships, :source => :follower

attr_accessor :password
attr_accessible :name, :email, :password, :password_confirmation

email_regex = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i

validates :name, :presence => true,
:length => { :maximum => 50 }

validates :email, :presence => true,
:format => { :with => email_regex },
:uniqueness => { :case_sensitive => false}

validates :password, :presence => true,
:confirmation => true,
:length => { :within => 6..40 }

before_save :encrypt_password

def has_password?(submitted_password)
encrypted_password == encrypt(submitted_password)
end

def self.authenticate(email, submitted_password)
user = find_by_email(email)
return nil if user.nil?
return user if user.has_password?(submitted_password)
end

def self.authenticate_with_salt(id, cookie_salt)
user = find_by_id(id)
(user && user.salt == cookie_salt) ? user : nil
end

def following?(followed)
relationships.find_by_followed_id(followed)
end

def follow!(followed)
relationships.create!(:followed_id => followed.id)
end

def unfollow!(followed)
relationships.find_by_followed_id(followed).destroy
end

def feed
Post.from_users_followed_by(self)
end

private

def encrypt_password
self.salt = make_salt unless has_password?(password)
self.encrypted_password = encrypt(password)
end

def encrypt(string)
secure_hash("#{salt}--#{string}")
end

def make_salt
secure_hash("#{Time.now.utc}--#{password}")
end

def secure_hash(string)
Digest::SHA2.hexdigest(string)
end

end

后模型

class Post < ActiveRecord::Base
attr_accessible :content

belongs_to :user

validates :content, :presence => true, :length => { :maximum => 140 }
validates :user_id, :presence => true

default_scope :order => 'posts.created_at DESC'

scope :from_users_followed_by, lambda { |user| followed_by(user) }

def self.from_users_followed_by(user)
following_ids = user.following_ids
where("user_id IN (#{following_ids}) OR user_id = ?", user)
end

private

def self.followed_by(user)
following_ids = %(SELECT followed_id FROM relationships
WHERE follower_id = :user_id)
where("user_id IN (#{following_ids}) OR user_id = :user_id",
{ :user_id => user })
end
end

最佳答案

这是代码问题,不是 Heroku 问题。

问题在于用户模型中的 Post.from_users_followed_by(self)。无论它包含什么,都不是 Postgres 友好的,或者没有针对 nil 值的保护。

关于ruby-on-rails - 将我的应用程序部署到 Heroku 时出现 500 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8711050/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com