0

我正在尝试将 Devise 与 React.rb 一起使用,所以我想我会将我的用户模型移动到公共目录以便能够通过 React 对其进行编辑,但是我收到了这个错误:

ActionView::Template::Error(User.devise(database_authenticatable,registerable,recoverable,rememberable,trackable,validatable) (called class method missing)):
1: <%= react_component @component_name, @render_params, { prerender: !params[:no_prerender] } %>
4

1 回答 1

1

您的用户模型中可能有一些设计特定的宏。

例如,如果您的用户模型如下所示:

class User < ActiveRecord::Base

  devise :database_authenticatable, :registerable,
       :recoverable, :rememberable, :trackable, :validatable
  # etc...
end

那么您需要确保设计调用仅在服务器上运行,如下所示:

class User < ActiveRecord::Base

  unless RUBY_ENGINE=='opal'
    devise :database_authenticatable, :registerable,
       :recoverable, :rememberable, :trackable, :validatable
  end
  # etc...
end

Reactive-Record 存根和代理所有标准的活动记录宏,如范围和客户端上的 belongs_to。但是它不知道设计方法的含义,因此将其包装起来unless RUBY_ENGINE=='opal将防止在客户端上调用它。

仅供参考,我在反应记录中添加了一个问题https://github.com/catprintlabs/reactive-record/issues/17以涵盖此...

于 2016-02-24T19:42:35.210 回答