我正在尝试找到一种将 gmaps4rails 地图加载到自定义 formtastic 字段中的方法(在 Active Admin 中使用)
我有这个:
class GmapInput < Formtastic::Inputs::StringInput
def to_html
gmaps4rails(Location.new)
end
end
正在触发,但我收到错误消息:
undefined method `gmaps4rails' for #<GmapInput:0x007f9cae5b2780>
我认为这是因为 gmaps4rails 尚未加载。我怎样才能确保它被加载?