私はこの記事の第二ソリューション、次のしてきた同じモデルとの関係のために:Many-to-many relationship with the same model in rails?Railsの管理プラグインの問題、多対多の
は、使用してプラグインRailsの管理(https://github.com/sferik/rails_admin)
を使用している間下のコードは、具体的には破損しているようですレール管理:
class PostConnection < ActiveRecord::Base
belongs_to :post_a, :class_name => :Post
belongs_to :post_b, :class_name => :Post
end
私は何ができるのですか?
更新:要求されたとして
ここではエラーです:
モデルのbelongs_toの文でNoMethodError in Rails_admin/main#index
Showing /Users/elliot/.rvm/gems/ruby-1.8.7-p299/bundler/gems/rails_admin-5713b1671e8c/app/views/rails_admin/main/index.html.erb where line #18 raised:
undefined method `match' for :Post:Symbol
Extracted source (around line #18):
15: <tbody>
16: <% @abstract_models.each do |abstract_model| %>
17: <tr class="<%= cycle 'odd', 'even' %>">
18: <td class="modelNameRow">
19: <%= link_to(RailsAdmin.config(abstract_model).list.label, rails_admin_list_path(:model_name => abstract_model.to_param), :class => "show") %>
20: </td>
21: <td>
"壊れています"詳細が不十分です。エラーメッセージを投稿したり、トレースをスタックしたりしてください。 –