How to create a namespaced model instance in Rails 3



我有这个型号:

class Backend::Enterprise < ::Enterprise  

我如何在它的命名空间中调用和实例化这个模型?

如果我写,在backend_enterprises_controller:中

@enterprise = Enterprise.find(1)

它调用模型:

class Enterprise < ActiveRecord::Base

我希望在每个名称空间模型中都有单独的方法。

有可能吗?我使用的是Rails 3.2.14和herited_resources gem。

谢谢。

也许我误解了你的问题,但你试过吗

@enterprise = Backend::Enterprise.find(1)

相关内容

  • 没有找到相关文章

最新更新