我在控制器中写了一个像这样工作的条件过滤器:
$this->_view = View::factory('crud/index')
->bind('collection', $collection);
$collection = ORM::factory($this->_model);
if (Request::current()->method() === Request::POST)
{
foreach (Request::current()->post('filter') as $field => $value)
{
$collection->where($field, '=', $value);
}
}
$collection->find_all();
在视图中,如果数据库中没有过滤结果或行,我有条件显示消息。
<?php if ( ! $collection->count()): ?>
这给了我一个例外:
Kohana_Exception [ 0 ]: Invalid method count called in Model_Product
问题是在添加过滤器之前,我的控制器操作是:
$this->_view = View::factory('crud/index')
->bind('collection', $collection);
$collection = ORM::factory($this->_model)->find_all();
$collection->count()
在视图中工作得很好。即使我没有发布,为什么ORM find_all()方法返回模型,即使代码没有输入条件?将$collection = ORM::factory($this->_model)->find_all();
分成$collection = ORM::factory($this->_model);
和$collection->find_all();
会打破整个事情。为什么这种奇怪的行为?
感谢。
答案 0 :(得分:2)
尝试这样做:
$collection = $collection->find_all();
find_all()
不会将查询结果保存在ORM对象中,您需要将其保存在变量中。