作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要传递 ActiveDataProvider
对象来查看,但我不明白为什么会这样:
$query = Incarico::find();
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
有效,而这个:
$query = Incarico::find()
->joinWith('allegatos')
->all();
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
给我以下错误:
Call to a member function andFilterWhere() on array
最佳答案
您不应将 all()
应用于 $query
,因为 ActiveDataProvider
query
属性需要有效的 当您传递该查询的结果时,ActiveQuery
实例。
关于php - Yii 2 ActiveDataProvider 查询 ->all() 给出 "Call to a member function andFilterWhere() on array"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30257838/
我是一名优秀的程序员,十分优秀!