模型助手 Zend
据我所知,只有动作助手和动作助手。查看 zend 框架中可用的帮助程序。
有模型助手吗?
或者我们如何实现模型助手?
from what i know there is only action helper & view helper available at zend framework.
is there any model helper?
or how we can implement the model helper?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ZF 中实际上没有任何东西称为模型助手 - 但如果您的模型正在访问数据库表,您可能希望将其创建为扩展 Zend_Db_Table_Abstract 的类。请参阅 ZF 手册中的示例: http://framework.zend.com/手册/en/zend.db.table.html
There's nothing in ZF actually called a Model helper - but if your model is accessing a database table you might want to create it as a class which extends Zend_Db_Table_Abstract. See examples in the ZF manual: http://framework.zend.com/manual/en/zend.db.table.html
在 Zend Framework 中,没有像视图助手那样为模型助手定义任何内容,但是您可以解决它并仍然保留应用程序设计(避免使用库文件夹)。
我的方法是在 models 文件夹中添加一个 Helper 文件夹。然后你必须像这样命名你的类:
然后自动加载器将负责查找并加载它。
不幸的是,这个命名与您在视图文件夹中的命名方式略有不同。在 views 文件夹中,您可以创建一个名为 helpers 的文件夹,并使用如下命名约定:
但是,如果您将 models 内的文件夹命名为 <那么它里面的类必须这样命名:
In Zend Framework there is nothing defined for the models helpers like there is for the views helpers, however you can work around it and still preserve the application design (avoid using the library folder).
The way I do it is by adding a Helper folder inside the models one. Then you have to name your class like this:
Then the autoloader will take care of finding it and loading it.
Unfortunately this naming is a little different from how you do it in the views folder. In the views folder you can create a folder named helpers and use a naming convention like:
However, if you name the folder inside models as helpers then the classes inside it have to be named like this:
首先,我将这一行添加到我的配置文件中,即。 application.ini:
添加一个类,
然后我在放置在
..library\App\Model\Helper.php
的文件中这是我发现在模型中使用的代码的唯一方法。
然后可以从模型中调用辅助方法:
我知道这会破坏 OOD,因此如果有人有更好、更干净的解决方案,我将不胜感激。
First I add this line in my configuration file ie. application.ini:
Then I add a class
in a file placed in
..library\App\Model\Helper.php
This is the only way I found to factor the code I use in the model.
The helper method can then be called from the model:
I am aware this breaks the OOD, so if any one has a better and cleaner solution I would greatly appreciate.