0

我很难让 MongoMapper 和 Formtastic 一起工作。

为了隔离问题,我用最少的代码创建了一个虚拟应用程序。

我有 2 个主要模型(机柜和设备),它们之间具有“many/belongs_to”关系以及机柜资源的脚手架控制器。

当我加载一个非常基本的formtastic表单(见下文)时,除了简单的“key”字段声明之外,我在控制器中得到一个“NoMethodError”异常,并出现以下错误“未定义的方法`scoped' for Device:Class”参考 _form.html.haml 部分的第 4 行。

对这个有任何想法吗?没有通过 Google 或 StackOverflow 找到任何有用的东西......

应用程序/模型/cabinet.rb

 class Cabinet
  include MongoMapper::Document
  safe

  key :label, String, :required => true
  many :devices
end

应用程序/模型/设备.rb

class Device
  include MongoMapper::Document
  safe

  key :label, String, :required => true
  belongs_to :cabinet
end

应用程序/视图/内阁/_form.html.haml

= semantic_form_for @cabinet do |f|
  = f.inputs do
    = f.input :label
    = f.input :devices
  = f.actions

我没有包括脚手架控制器,因为我没有以任何方式接触脚手架代码。

使用的宝石版本:

Gems included by the bundle:
  * actionmailer (3.2.7)
  * actionpack (3.2.7)
  * activemodel (3.2.7)
  * activerecord (3.2.7)
  * activeresource (3.2.7)
  * activesupport (3.2.7)
  * arel (3.0.2)
  * bson (1.6.4)
  * bson_ext (1.6.4)
  * builder (3.0.0)
  * bundler (1.1.5)
  * coffee-rails (3.2.2)
  * coffee-script (2.2.0)
  * coffee-script-source (1.3.3)
  * erubis (2.7.0)
  * execjs (1.4.0)
  * formtastic (2.2.1)
  * haml (3.1.6)
  * haml-rails (0.3.4)
  * hike (1.2.1)
  * hpricot (0.8.6)
  * i18n (0.6.0)
  * journey (1.0.4)
  * jquery-rails (2.0.2)
  * json (1.7.4)
  * libv8 (3.3.10.4)
  * mail (2.4.4)
  * mime-types (1.19)
  * mongo (1.6.4)
  * mongo_mapper (0.11.2)
  * multi_json (1.3.6)
  * plucky (0.5.1)
  * polyglot (0.3.3)
  * rack (1.4.1)
  * rack-cache (1.2)
  * rack-ssl (1.3.2)
  * rack-test (0.6.1)
  * rails (3.2.7)
  * railties (3.2.7)
  * rake (0.9.2.2)
  * rdoc (3.12)
  * ruby_parser (2.3.1)
  * sass (3.1.20)
  * sass-rails (3.2.5)
  * sexp_processor (3.2.0)
  * sprockets (2.1.3)
  * therubyracer (0.10.1)
  * thor (0.15.4)
  * tilt (1.3.3)
  * treetop (1.4.10)
  * tzinfo (0.3.33)
  * uglifier (1.2.7)
4

1 回答 1

0

mongomapper 没有“作用域”类方法。这是 ActiveRecord 和 Mongoid 的一个特性。

于 2012-08-06T10:13:52.240 回答