- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Yii2.0小部件GridView(两表联查/搜索/分页)功能的实现代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
GridView 两表联查/搜索/分页 。
当我们在一个网格视图中显示活动数据的时候,你可能会遇到这种情况,就是显示关联表的列的值,为了使关联列能够排序,你需要连接关系表,以及添加排序规则到数据提供者的排序组件中,对数据进行搜索,排序.
Ⅰ.控制器层Controller 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<?php
namespace
backend\controllers;
header(
"Content-type:text/html;charset=utf-8"
);
use
Yii;
use
yii\web\Controller;
//超级控制器类
use
backend\models\BooksInfo;
//表Model类
use
backend\models\InfoSearch;
//引入搜索Model类
use
yii\data\ActiveDataProvider;
//小部件数据源类
use
yii\grid\GridView;
//查询小部件
/**
*@abstract BooksController
*@author NING <[email ning@163.com]>
*@version [version 1.0] [书籍管理]
*/
class
BooksInfoController
extends
Controller
{
//书籍列表
public
function
actionIndex()
{
$searchModel
=
new
InfoSearch();
//实例化searchModel[搜索Model]
if
(!
empty
(
$_GET
[
'InfoSearch'
])){
$getSearch
= Yii::
$app
->request->get();
//接收搜索字段
$data
=
$searchModel
->search(
$getSearch
);
}
else
{
//小部件查询数据
$data
=
new
ActiveDataProvider([
'query'
=> BooksInfo::find(),
//查询数据
'pagination'
=> [
'pageSize'
=> 2,
//每页显示条数
],
'sort'
=> [
'defaultOrder'
=> [
// 'created_at' => SORT_DESC,
'id'
=> SORT_ASC,
//[字段]设置排序·
]
],
]);
}
//传送查询数据、搜素Model
return
$this
->render(
'index'
,[
'data'
=>
$data
,
'searchModel'
=>
$searchModel
]);
}
?>
|
Ⅱ.查询模型层Model 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?php
namespace
backend\models;
use
Yii;
use
yii\db\ActiveRecord;
/**
*@abstract [BookForm]
*@author NING <[email ning@163.com]>
*@version [vector 1.0] [书籍详情模型]
*/
class
BooksInfo
extends
ActiveRecord
{
/**
* @设置表名
*/
public
static
function
tableName()
{
return
'{{%books_info}}'
;
}
//关联表
public
function
getBooksType(){
// hasOne要求返回两个参数 第一个参数是关联表的类名 第二个参数是两张表的关联关系
// 这里id是books_type表的id, 关联books_info表的type_id
return
$this
->hasOne(BooksType::className(), [
'id'
=>
'type_id'
]);
}
public
function
attributeLabels()
{
return
[
'id'
=>
'ID'
,
'book_name'
=>
'书籍名称'
,
'book_face'
=>
'书籍封面'
,
'type_id'
=>
'书籍分类ID'
,
'type_name'
=>
'书籍分类'
,
];
}
}
?>
|
Ⅲ.搜索模型层Search 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?php
namespace
backend\models;
//命名空间
use
Yii;
use
yii\base\Model;
//引入基类Model
use
yii\data\ActiveDataProvider;
//引入数据源类
/**
*@abstract [搜索Model]
*@return [type]
*@author NING <[email ning@163.com]>
*/
// 注意:此处继承的是查询Model--->BooksInfo
class
InfoSearch
extends
BooksInfo
{
public
$type_name
;
//定义属性变量
// 只有在 rules() 函数中声明的字段才可以搜索
public
function
rules()
{
return
[
// [['book_name','type_name'], 'safe'],
[[
'type_name'
],
'safe'
],
];
}
public
function
scenarios()
{
// 旁路在父类中实现的 scenarios() 函数
return
Model::scenarios();
}
public
function
search(
$params
)
{
$query
= BooksInfo::find();
$dataProvider
=
new
ActiveDataProvider([
'query'
=>
$query
,
'pagination'
=> [
'pageSize'
=> 1,
],
]);
/*这里的articlecategory是article模型里面关联的方法名,除了首字母,其他都要完全一样,否则会报错*/
$query
->joinWith([
'booksType'
]);
// 从参数的数据中加载过滤条件,并验证
if
(!(
$this
->load(
$params
) &&
$this
->validate())) {
return
$dataProvider
;
}
// 增加过滤条件来调整查询对象
$query
->andFilterWhere([
'like'
,
'book_name'
,
$this
->book_name]);
//添加关联字段过滤条件[注意:此处books_type.type_name中books_type为分类表名]
$query
->andFilterWhere([
'like'
,
'books_type.type_name'
,
$this
->type_name]);
return
$dataProvider
;
}
}
?>
|
Ⅳ.视图层View 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?php
use
yii\grid\GridView;
use
yii\data\ActiveDataProvider;
use
yii\grid\ActionColumn;
use
yii\helpers\Html;
$this
->title =
'图书列表'
;
?>
<!-- 面包屑 -->
<ol
class
=
"breadcrumb"
>
<li><a href=
"#"
rel=
"external nofollow"
rel=
"external nofollow"
>Home</a></li>
<li><a href=
"#"
rel=
"external nofollow"
rel=
"external nofollow"
>图书信息</a></li>
<li
class
=
"active"
>图书列表</li>
</ol>
<?php
echo
GridView::widget([
'dataProvider'
=>
$data
,
//数据源
'filterModel'
=>
$searchModel
,
//搜索列
'columns'
=> [
// ['filterModel' => $searchModel],
[
'class'
=>
'yii\grid\CheckboxColumn'
],
//复选框列
[
'attribute'
=>
'id'
],
[
'attribute'
=>
'book_name'
,],
[
'attribute'
=>
'book_face'
,
'content'
=>
function
(
$model
){
// 图片显示
return
Html::img(
$model
->book_face,[
'width'
=>
'50'
]);
}],
[
'attribute'
=>
'type_name'
,
'value'
=>
'booksType.type_name'
,
//两表联查[书籍类型]
],
[
'class'
=>
'yii\grid\ActionColumn'
,
'header'
=>
'操作'
],
//动作列
],
'pager'
=> [
//自定义分页样式以及显示内容
'prevPageLabel'
=>
'上一页'
,
'nextPageLabel'
=>
'下一页'
,
'firstPageLabel'
=>
'第一页'
,
'lastPageLabel'
=>
'最后一页'
,
'options'
=>[
'style'
=>
'margin-left:200px;'
,
'class'
=>
"pagination"
],
],
]);
?>
|
Ⅴ.效果展示 。
总结 。
以上所述是小编给大家介绍的Yii2.0小部件GridView(两表联查/搜索/分页)功能的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我网站的支持! 。
原文链接:http://blog.csdn.net/nw_ningwang/article/details/77547429 。
最后此篇关于Yii2.0小部件GridView(两表联查/搜索/分页)功能的实现代码的文章就讲到这里了,如果你想了解更多关于Yii2.0小部件GridView(两表联查/搜索/分页)功能的实现代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
目前我的后端和前端都有 2 个 Yii 安装设置。但是在处理这个问题时,它会变得有点困惑,我想知道这是否以正确的方式完成。下面是如何设置我的文件夹结构的示例。 - backend - assets
如何禁用通知,我在 idex.php 中尝试但通知是回声,我如何禁用它。 在 php.ini 最佳答案 更新 public/index.php
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
'urlManager'=>array( 'urlFormat'=>'path', 'rules'=>array( '' => array('site/page/vie
从 Yii 到 Yii 2.0 这行代码怎么写: Yii::app()->getRequest()->getRestParams() ? 最佳答案 在我看来,相当于 Yii::app()->getRe
我想使用多个调用构建查询,但在使用此代码时出现错误 $command = Yii::app()->db->createCommand() ->select('*') ->from('{
Yii中我的模型规则函数中的以下代码 public function rules() { // NOTE: you should only define rules for those att
我正在开发一个带有主数据库和多个数据库的系统,每个客户端一次。当客户填写并提交包含所有必需详细信息的表单时,将创建客户数据库及其表。 我的问题:Yii 框架是否支持动态创建数据库和表?如果是这样,是否
我知道我可以在 Yii 中注册一个新的元标记并且我知道怎么做,但是我需要 替换我设置的默认标签,因为当我在一篇文章时,我想插入 元标记中文章的简短描述; 如何管理元标记? 最佳答案 如果您使用的是最新
我尝试仅在管理模块中加载 Yii Bootstrap 扩展,但它不起作用。我假设我需要预加载它或以某种方式启动它......谢谢! class AdminModule extends CWeb
我已经建立了新的 Yii2 项目。现在我想 reorganize folder structure在“public”和“app”两个文件夹中(实际上代表 protected 文件)。 框架中的所有代码
页面 Controller 访问规则: public function accessRules() { $isadmin = User::loadUser(
代理人: agent_id (primary key) 用户: f_id (foreign key) type 我以这种方式创建了关系 public function relations() {
大家好,感谢阅读。 我想知道如何将数字格式化为货币,或者只是在末尾附加 €。我在 yii 框架的管理页面上的 gridview 中工作。 我有这个,例如 'columns'=>array(
如何禁用 Yii 的内置身份验证? (/site/login ). 我正在使用扩展程序进行身份验证并且不想让内置登录保持打开状态 - 这可能是一个安全问题。 最佳答案 我认为您可以删除站点 Contr
使用 Yii,我想删除所有不是今天的行。 我的解决方案好吗? $query = "delete from `user_login_hash` where `day`!='".(date('Y-m-d'
gridview yii如何在一列数组值中显示两个关系值 在我的模型代码中有关系 $criteria->compare('exp.ExperienceYear',$this->Experience,
是他们对的任何常用方法吗?为我的 yii 项目添加扩展 ? 如何向我的 yii 添加扩展名 请解释 步骤 最佳答案 “ 应用程序配置 ”在安装扩展时起着重要作用。默认情况下,此配置将位于 php 文件
如何在 yii 中使用场景禁用文本字段?我有 3 类帐户 super 管理员、管理员和普通用户。所有 3 类用户都有权更新有关他们的信息,但其中一个字段 accountId 只能由 super 管理员
我在 yii 中找不到太多关于将默认范围应用于模型的文档,我想知道是否有人可以解释或指出我正确的方向。 我的问题的快速版本: 是否可以向默认范围添加关系,或者默认情况下向模型上的每个 AR 搜索添加“
我是一名优秀的程序员,十分优秀!