为什么推送到Heroku时我的rails应用程序不会工作:“ActionView :: Template :: Error(未定义的方法`toilet_available'为nil:NilClass)”?

问题描述 投票:0回答:1

我正在使用Open Street Map API和leaflet-rails gem在Rails 5中构建一个商店定位器应用程序。一切都在开发环境中按预期工作,但当我推到Heroku时,我得到了“我们很抱歉,但出了点问题。”信息。我创建了一个功能,您可以根据是否有厕所对商店进行分类,这种接缝是问题所在。 Heroku日志显示以下内容:

2018-09-12T22:02:39.751563+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123] Completed 500 Internal Server Error in 624ms (ActiveRecord: 119.5ms)
2018-09-12T22:02:39.706503+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123]   Toilet Load (29.5ms)  SELECT "toilets".* FROM "toilets"
2018-09-12T22:02:39.772904+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123]
2018-09-12T22:02:39.773276+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123]     29:                                             <li><%= link_to "Log In", new_user_session_path %> </li>
2018-09-12T22:02:39.772915+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123] ActionView::Template::Error (undefined method `toilet_available' for nil:NilClass):
2018-09-12T22:02:39.773280+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123]     30:                                             <li><%= link_to "Add Spaeti", new_user_registration_path %> </li>
2018-09-12T22:02:39.773283+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123]     31:                                     <% end %>
2018-09-12T22:02:39.773285+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123]     32:                                     <li><%= link_to "Spaetis with toilets", stores_path(toilet: Toilet.all[0].toilet_available) %></li>
2018-09-12T22:02:39.773288+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123]     33:                             </ul>
2018-09-12T22:02:39.773290+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123]     34:                     </div>
2018-09-12T22:02:39.773292+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123]     35:             </nav>
2018-09-12T22:02:39.773336+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123]
2018-09-12T22:02:39.773423+00:00 app[web.1]: [30a84d17-6a5a-4b3d-b21f-ee08babfd123] app/views/layouts/application.html.erb:32:in `_app_views_layouts_application_html_erb__2166090761148733231_41993540'

当我从视图中删除此行时,应用程序加载正常:<li><%= link_to "Spaetis with toilets", stores_path(toilet: Toilet.all[0].toilet_available) %></li>

可能导致此错误的原因是什么?我已经把头发撕了好几天了......

商店型号:

class Store < ApplicationRecord
    belongs_to :user
    belongs_to :toilet

    validates :name, presence: true
    validates :address, presence: true
    validates :address_line2, presence: true
    validates :address_line3, presence: true
    validates :toilet, presence: true
    # validates :latitude, presence: true
    # validates :longitude, presence: true
    validates :beer_cost, format: { with: /\A\d+(?:\.\d{0,2})?\z/ }, numericality: { greater_than: 0, less_than: 10 }
    validates :latitude, :presence => {message: "Not a valid location, please check name address & country fields" }

    def full_address
      [address, address_line2, address_line3].compact.join(', ')
    end
    geocoded_by :full_address
    before_validation :geocode,
      :if => lambda{ |obj| obj.address_changed? }

    def capitalize_name
        name.capitalize
    end

    def capitalize_address
        address.capitalize
    end
end

卫生间型号:

class Toilet < ApplicationRecord
    has_many :stores
end

Schema.rb:

ActiveRecord::Schema.define(version: 20180814220216) do

  create_table "stores", force: :cascade do |t|
    t.string "name"
    t.string "address"
    t.float "beer_cost"
    t.text "facilities"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.float "latitude"
    t.float "longitude"
    t.boolean "toilet"
    t.string "address_line2"
    t.integer "user_id"
    t.integer "toilet_id"
    t.string "address_line3"
  end

  create_table "toilets", force: :cascade do |t|
    t.string "toilet_available"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
  end

  create_table "users", force: :cascade do |t|
    t.string "email", default: "", null: false
    t.string "encrypted_password", default: "", null: false
    t.string "reset_password_token"
    t.datetime "reset_password_sent_at"
    t.datetime "remember_created_at"
    t.integer "sign_in_count", default: 0, null: false
    t.datetime "current_sign_in_at"
    t.datetime "last_sign_in_at"
    t.string "current_sign_in_ip"
    t.string "last_sign_in_ip"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.index ["email"], name: "index_users_on_email", unique: true
    t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
  end

end

Github回购:https://github.com/catsinspacesuits/Spaeti-App

ruby-on-rails ruby leaflet maps
1个回答
0
投票

对不起,我误解了你要做的事情。我认为即使你不再收到错误,你仍然没有得到你想要得到的答案。您使用非标准方法来获得布尔列。在rails控制台上执行以下操作:

t = Toilet.first
t.toilet_available

并查看返回值。无论“是”还是“不”,您都会获得价值。所以,如果这样:

Toilet.all[0].toilet_available

应该是这样的意思:“得到所有的厕所,并采取可用的第一个厕所=是”,这不是正在发生的事情。定义为带有“是”或“否”的String类型的DB列不是布尔值,如果没有定义解释它的方法,它将不会像下面那样:

def has_toilet
  self.toilet_available == "yes" ? true : false
end

我认为你使用Toilet.all[0].toilet_available得到的是“获取所有厕所并取第一个结果并将栏中的文本返回toilet_available,无论该文本是true还是false”。但如果你的意图是“让我第一个厕所,其可用性是true”,那么你的代码是错误的。

这是一个在您的开发数据库中使用的简单测试,您可以在其中获得大量记录。在Rails控制台中执行以下操作:

puts Toilet.all[0]
puts Toilet.all.first
puts Toilet.where(toilet_available: 'yes').limit(1)
puts Toilet.find_by(toilet_available: 'yes')

他们可能不会都返回相同的结果。 .all[0]的模式是恕我直言,这是一种从数据库中获取内容的不好方法,因为它非常模糊。

也可以在控制台中执行此操作:

Toilet.all.each do |t|
  puts "toilet_available is #{t.toilet_available} and is #{t.toilet_available ? true : false}
end

你应该看到类似的东西:

toilet_available is yes and is true
toilet_available is no and is true

关键是在Rails中在文本列中具有文本值会导致它为“true”。获得错误的唯一方法是将值设为nil。如果toilet_available只有两个状态,那么布尔列类型将更合适,而其他开发人员将倾向于期望。如果值可能是三个状态,如“是”,“否”,“未知”,那么您可以使用具有状态机的列。

© www.soinside.com 2019 - 2024. All rights reserved.