Rails NoMethodError for Heroku上的Blog#create,但不是Localhost

时间:2018-07-11 22:16:00

标签: ruby-on-rails heroku

我有一个具有基本博客结构的应用程序。在localhost上创建新博客的效果很好,但是当我尝试在Heroku上创建新博客时,我的日志中出现以下错误:

2018-07-11T21:20:01.863867+00:00 app[web.1]: [2f20a9d7-e0f6-4ab9-b2ac-d6b3a08e8ed0] Command :: file -b --mime '/tmp/819c55b783715f61a2656207b4852b5c20180711-4-140ohfr.jpg'
2018-07-11T21:20:01.872443+00:00 app[web.1]: [2f20a9d7-e0f6-4ab9-b2ac-d6b3a08e8ed0] Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.0ms)
2018-07-11T21:20:01.873180+00:00 app[web.1]: [2f20a9d7-e0f6-4ab9-b2ac-d6b3a08e8ed0]
2018-07-11T21:20:01.873253+00:00 app[web.1]: [2f20a9d7-e0f6-4ab9-b2ac-d6b3a08e8ed0] NoMethodError (undefined method `[]=' for nil:NilClass):
2018-07-11T21:20:01.873285+00:00 app[web.1]: [2f20a9d7-e0f6-4ab9-b2ac-d6b3a08e8ed0]
2018-07-11T21:20:01.873329+00:00 app[web.1]: [2f20a9d7-e0f6-4ab9-b2ac-d6b3a08e8ed0] app/controllers/blogs_controller.rb:48:in `create'
2018-07-11T21:20:01.874027+00:00 app[web.1]: 10.101.219.132 - - [11/Jul/2018:21:19:56 UTC] "POST /blogs HTTP/1.1" 500 1958
2018-07-11T21:20:01.874063+00:00 app[web.1]: http://www.linchpinrealty.com/blogs/new -> /blogs
2018-07-11T21:20:01.874816+00:00 heroku[router]: at=info method=POST path="/blogs" host=www.linchpinrealty.com request_id=2f20a9d7-e0f6-4ab9-b2ac-d6b3a08e8ed0 fwd="68.225.227.137" dyno=web.1 connect=0ms service=5463ms status=500 bytes=2235 protocol=http

我的blogs#create方法非常简单:

 def create
    @pillars = Pillar.all
    @blog = Blog.new(blog_params)
    if current_user.id = 1
      @blog.user_id = 2
    else
      @blog.user = current_user
    end

    if @blog.save
      redirect_to @blog, notice: 'Blog was successfully created.'
    else
      render :new
    end
  end

我具有以下权限:

 private
    # Use callbacks to share common setup or constraints between actions.
    def set_blog
      @blog = Blog.friendly.find(params[:id])
    end

    # Only allow a trusted parameter "white list" through.
    def blog_params
      params.require(:blog).permit(:title, :teaser, :body, :user_id, :image, :tag_list, :link_text, :link_filename, :pillars_id)
    end

我不确定哪里出问题了(没有双关语)。我确实看到this问题,问题出在哪里是数据库问题。在这种情况下,我最近所做的唯一更改将是在我的blogs#show方法中……尽管我不知道这怎么会阻止博客甚至保存在数据库中(但事实并非如此)。 :

  def show
    @pillars = Pillar.all
    @pillar = Pillar.find_by(id: @blog.pillars_id)
    @related = Blog.where(pillars_id: @blog.pillars_id).where.not(id: @blog.id).limit(4)
    @comment = @blog.comments.build
    @comments = Comment.where(blog_id: @blog.id, approved: true)
    if current_user
      @user = current_user
    end
  end

谁能看到我要去哪里错了?

2 个答案:

答案 0 :(得分:1)

从日志来看,事实证明它可以在本地主机上正常运行,托管tmp映像文件可能是错误的。

您应该看一下这些文章:

编辑:

我刚刚看到你get the same error without an image,但是您没有设置任何默认图片吗?

->您可以发布没有上传图像的错误日志吗?

Edit2:

我访问了您的网站,更新了现有博客文章中的图片,并且该图片可以正常工作,因此可能未链接到图片系统。

Edit3:

在您的网站上进行了一些测试之后,错误的是tag_list字段:您可以创建一些没有标签的新博客帖子,但是一旦插入一些标签,就会引发错误。

Ps:对不起,我没有设法删除没有路由的测试

答案 1 :(得分:0)

您是否检查过Heroku上的迁移?