将教义 findBy/getBy 魔术方法与寻呼机对象一起使用?
是否可以将教义魔术方法(在本例中为 findBy*)与 sfDoctrinePager 一起使用?我收到以下错误:
Call to undefined method Doctrine_Collection::offset()
这是代码:
$this->pager->setQuery(Doctrine::getTable('notification')->findByUserId($this->getUser()->getGuardUser()->getId()));
我知道我可以自己构建一个查询,只是想知道是否可以使用“魔术”方法。
Is it possible to use doctrines magic methods (in this case findBy*) with sfDoctrinePager? I'm getting the following error:
Call to undefined method Doctrine_Collection::offset()
Here is the code:
$this->pager->setQuery(Doctrine::getTable('notification')->findByUserId($this->getUser()->getGuardUser()->getId()));
I know I can build a query myself just want to know if it's possible using the "magic" methods.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你不能。 findby* 方法返回一个对象或对象数组。 sfDoctrinePager 只能作用于查询对象。
nope, you can't. the findby* methods returns an object or an array of objects. sfDoctrinePager can only work on query objects.