Zend Framework 2:如何跨模块访问函数?
我不确定这是否可行,所以请告诉我。
我目前有一个 Zend Framework 的模块化设置,只有 2 个模块:
sms
web
application
--- /forms
--- /models
--- /modules
------/sms/
---------/models
------/web/
---------/models
是否可以从 WEB 模块访问 SMS 模块中的功能(模型)?
假设我在 WEB 模块中的 IndexController 中,想要调用 SMS 模块中的 getData() 模型,这可能吗?
I am not sure if this is possible, so please let me know.
I have a modular setup of Zend Framework currently with only 2 modules:
sms
web
application
--- /forms
--- /models
--- /modules
------/sms/
---------/models
------/web/
---------/models
Is it at all possible to access the functions (Models) in the SMS module from the WEB module?
Lets say I was in the IndexController in the WEB module and wanted to call the getData() Model in the SMS module, is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用命名空间的更多 ZF2 特定方式是:
More ZF2 specific way, using namespace, would be: