大家有遇到过循环依赖的问题吗?
启动服务器之后(webrick 能顺利启动)后端会出现一行 warning
warning: toplevel constant Account referenced by Shop::Account
和 RuntimeError
RuntimeError - Circular dependency detected while autoloading constant Shop::Account::CustomersHelper:
分析下来 rails load Shop::Account::CustomersHelper
的时候会去加载 Shop::Account
而 Shop::Account
中又重新加载了 CustomersHelper
导致的,但是我没有找到异常的代码,所以现在没有找到头绪,我想问大家如何能够看到 rails 的 class & module 的加载顺序和记录以便找到最终问题出现在那个地方?