0
는이 같은 우려 만들려면 :우려와 필드 레일
module Geolocalizable
extend ActiveSupport::Concern
include Mongoid
included do
attr_accessible :lat, :lng
field :lat
field :lng
end
end
을 그리고보다 내 모델에 포함 :
class Store
include Mongoid::Document
include 'Geolocalizable'
field :name, type: String
field :address, type: String
end
하지만 내 저장/new.html.erb 이에 0xae6bb58
: 줄은 나에게 오류f.text_filed :lat
정의되지 않은 메서드`위도에 대한 #Store을 제공합니다
어떻게 해결할 수 있습니까?
고맙습니다! 나는 정말로 나쁘다 : / –