例外: Mongoid::Errors::InverseNotFound

継承:
MongoidError
  • オブジェクト
すべて表示
定義:
build/mongoid- 8.1 /lib/mongoid/errors/inverse_not_find.rb

Overview

必要な場合に inverse_ of の定義が見つからない場合に発生します。

定数の概要

MongoidErrorから継承された定数

MongoidError::Base_KEY

インスタンス属性の概要

MongoidErrorから継承される属性

問題が発生した場合、解決が与えられたら次の状況が発生します。

インスタンス メソッドの概要を折りたたむ

MongoidErrorから継承されたメソッド

#compose_message

コンストラクターの詳細

#初期化(base、name、klas、逆) = InverseNotFound

をクリックして新しいエラーを作成します。

例:

新しいエラーを作成します。

InverseNotFound.new(Town, :citizens, Person, :town_id)

パラメーター:

  • ベース クラス

    基本クラス。

  • name シンボル

    関連付けの名前。

  • klass クラス

    子クラス。

  • シンボル

    試行された逆キー。



18
19
20
21
22
23
24
25
ファイル ' build/mongoid- 8.1 /lib/mongoid/errors/inverse_not_find.rb ', 行18

デフォルト 初期化(ベース, name, klass, )
  スーパー(
    compound_message(
      " inverse_not_find ",
      { base: ベース, name: name, klass: klass, 逆:  }
    )
  )
end