Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在管理控制器的前端(目录/模型/帐户/地址)中加载一个模型类。我可以通过将该模型复制到管理员的模型文件夹来做到这一点,但我想在不复制模型类的情况下做到这一点。
有什么办法吗?或者我必须修改加载器类。有什么建议吗?
提前致谢..
地址方法可通过admin/model/sale/customer.php管理员中的文件在目录端使用。只需使用它
admin/model/sale/customer.php
$this->load->model('sale/customer'); $addresses = $this->model_sale_customer->getAddresses(12345);