未捕获的错误:RuntimeError:编辑似乎不是一个反应组件

时间:2019-05-01 21:38:41

标签: ruby-on-rails ruby reactjs hyperstack

我收到“未捕获的错误:RuntimeError:编辑似乎不是一个反应组件”。消息,尽管在同一模块中定义了修改:

module Components
  module Admin
    module Discounts
      class Layout < Hyperloop::Router::Component
        render(DIV) do
          Switch do
            Route("#{match.url}/index") do
              Redirect(pathname: match.url, search: location.search)
            end

            Route(match.url, exact: true) do |m, l, h|
              Index(match: m, location: l, history: h)
            end

            Route("#{match.url}/:discount_id/edit") do |m, l, h|
              Edit(match: m, location: l, history: h)
            end

            Route("#{match.url}/new") do |m, l, h|
              New(match: m, location: l, history: h)
            end
          end
        end
      end
    end
  end
end
module Components
  module Admin
    module Discounts
      class Edit < Hyperloop::Router::Component
...

但是,我还有另一个文件模型/edit.rb,似乎可以代替

module Edit
  def backup(attr_whitelist, assoc_whitelist)
    @saved_attributes = attributes_as_json(attr_whitelist, assoc_whitelist)
  end

关于这种情况为什么发生/如何指向类Edit的任何想法?

1 个答案:

答案 0 :(得分:1)

好像您发现了一个错误!

https://github.com/hyperstack-org/hyperstack/issues/181

这很晦涩,但是如果嵌套了组件类,并且在外部作用域定义了另一个模块或类,则组件查找将失败!

同时您可以

  • 拾取边缘分支上的修补程序
  • 按问题所示进行修补,或
  • 在安装时添加父模块名称(即Discount::Edit)和组件名称