在heroku运行rake db:migrate之后,无法在heroku中添加新帖子

时间:2014-06-05 05:51:39

标签: ruby-on-rails heroku

我最近在heroku上传了我的Rails App。我有3个型号 -

  • 用户

我执行了将应用程序部署到heroku所需的步骤。我的设计用户模型和区域模型CRUD工作正常。所以我想我在heroku中的数据库迁移工作得很好。但是当我尝试在heroku中写一篇新帖时,它给了我错误"我们很抱歉,但出了点问题。"。我可以在localhost中写新帖子,没有任何错误。

posts_controller.rb

 class PostsController < ApplicationController
    before_action :set_post, only: [:show, :edit, :update, :destroy]
    before_action :authenticate_user!, except: [:show, :index]

    # GET /posts
    # GET /posts.json
    def index
      if params[:tag]
        @posts = Post.tagged_with(params[:tag])
      else
        @posts = Post.all
      end    
    end

    # GET /posts/1
    # GET /posts/1.json
    def show
    end

    # GET /posts/new
    def new
      @post = Post.new
    end

    # GET /posts/1/edit
    def edit
    end

    # POST /posts
    # POST /posts.json
    def create
      @post = Post.new(post_params)

      respond_to do |format|
        if @post.save
          format.html { redirect_to @post, notice: 'Post was successfully created.' }
          format.json { render :show, status: :created, location: @post }
        else
          format.html { render :new }
          format.json { render json: @post.errors, status: :unprocessable_entity }
        end
      end
    end

    # PATCH/PUT /posts/1
    # PATCH/PUT /posts/1.json
    def update
      respond_to do |format|
        if @post.update(post_params)
          format.html { redirect_to @post, notice: 'Post was successfully updated.' }
          format.json { render :show, status: :ok, location: @post }
        else
          format.html { render :edit }
          format.json { render json: @post.errors, status: :unprocessable_entity }
        end
      end
    end

    # DELETE /posts/1
    # DELETE /posts/1.json
    def destroy
      @post.destroy
      respond_to do |format|
        format.html { redirect_to posts_url, notice: 'Post was successfully destroyed.' }
        format.json { head :no_content }
      end
    end

    private
      # Use callbacks to share common setup or constraints between actions.
      def set_post
        @post = Post.find(params[:id])
      end

      # Never trust parameters from the scary internet, only allow the white list through.
      def post_params
        params.require(:post).permit(:title, :tag_list, :location, :body, :user_id, :published)
      end
  end

_form.html.erb

    <%= form_for(@post) do |f| %>
      <% if @post.errors.any? %>
        <div id="error_explanation">
          <h2><%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:</h2>

          <ul>
          <% @post.errors.full_messages.each do |message| %>
            <li><%= message %></li>
          <% end %>
          </ul>
        </div>
      <% end %>

      <%= f.hidden_field :user_id, value: current_user.id %>

      <div class="field">
        <%= f.label :title %><br>
        <%= f.text_field :title %>
      </div>
      <div class="field">
        <%= f.label :tag_list, 'Insert Tags' %><br>
        <%= f.text_field :tag_list %>
      </div>
      <div class="field">
        <%= f.label :location %><br>
        <%= f.text_field :location %>
      </div>
      <div class="field">
        <%= f.label :body %><br>
        <%= f.text_area :body %>
      </div>
      <div class="field">
        <%= f.label :published %><br>
        <%= f.check_box :published %>
      </div>
      <div class="actions">
        <%= f.submit %>
      </div>
    <% end %>

3 个答案:

答案 0 :(得分:2)

在回复您的评论时,您可能最好将错误保存到数据库,以便您可以看到实际的异常。要做到这一点,你基本上需要一个名为errors的数据库,一些middleware&amp;然后致电:

$ heroku rails c
$ errors = Error.last #-> shows latest error
$ errors.inspect()

<强>问题

我个人认为您的问题是您尝试使用Post.create方法做一些古怪的事情。具体来说,我相信您的model可能会出现问题,导致保存机制无法完成而不会引发异常。

如上所述,您的controller代码看起来不错 - 因此问题显然与您应用的其他部分有关(通常是modeldb)。要解决这个问题,我会看一下你的模型&amp;然后确保您的数据库具有所需的列,以便您正确保存数据。

...


<强>例外

对你来说好处是捕获例外。

您可以通过两种方式执行此操作:

  
      
  • 将错误保存到您的数据库
  •   
  • 将错误发送到您的电子邮件
  •   

我已经制作了一个用于将错误发送到您的数据库的宝石,但您肯定会受益的东西(我们在生产中使用的是)使用exception_notification,一个维护的宝石来帮助您将例外发送到您的电子邮箱:

#Gemfile
gem 'exception_notification', '~> 4.0.1'

#config/environments/production.rb
#Use Gmail's server for now
config.action_mailer.smtp_settings = {
  :address              => "smtp.gmail.com",
  :port                 => 587,
  :domain               => "domain.com",
  :user_name            => "your_name@gmail.com",
  :password             => Rails.application.secrets.gmail,
  :authentication       => :plain,
  :enable_starttls_auto => true
}  

config.middleware.use ExceptionNotification::Rack,
  :email => {
    :email_prefix => "Error",
    :sender_address => %{"notifier" <error@xxxxxxxxxxxx.com>},
    :exception_recipients => %w{support@xxxxxxxxxxxxxxx.com}
}

这应该将错误堆栈跟踪发送到您的电子邮件(我们在生产中使用它,所以它也适合您)

-

<强>宝石

我们实际上做了一个名为exception_handlergithub repo)的宝石 - 如果你把它放到你的应用程序中,它将允许你将错误保存到你的数据库(它还会显示生产中的自定义错误页面,它应该显示错误是什么):

#Gemfile
gem 'exception_handler'

#cmd
$ rails generate exception_handler:install #-> creates initializer
$ rails generate exception_handler:migration '-> creates "errors" db
$ rake db:migrate

#config/initializers/exception_handler.rb

#DB - 
#Options = false / true
config.db = true #-> set to true

#Social
    #Change these if you want
config.social = {
    twitter:    "http://twitter.com/frontlineutils",
    facebook:   "https://facebook.com/frontline.utilities",
    linkedin:   "https://linkedin.com/company/frontline-utilities",
    youtube:    "https://youtube.com/user/frontlineutils",
    fusion:     "http://frontlinefusion.com/frontlineutils"
}

这应该可以帮助您显示错误,然后我们可以更好地对它们采取行动:)

答案 1 :(得分:0)

在Heroku上运行生产中的迁移时,这种情况经常发生。我建议运行heroku pg:reset DATABASE。在Heroku中,您无权以分配的PostgreSQL用户身份删除和创建数据库。但运行此命令将通过Heroku而不是PostgreSQL方式为您运行这些确切的步骤。

查看this了解详情。

答案 2 :(得分:0)

有时(有时)重启服务器有效:heroku restart