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.
假设我有 2 个模块:A 和 B。
如果我想从模块 A 调用模块 B 的模型之一中的函数,正确的方法是什么?
模块之间的通信应该只发生在控制器之间,还是我可以直接从模块 B 以控制器形式模块 A 调用模型?
谢谢。
请按照以下步骤操作
1) load model of B from A module like $this->load->model("b_model"); 2) if your function name is user then call like this $this->b_model->user();