在上篇文章给大家介绍了Yii2中如何使用modal弹窗(基本使用),即以创建为例。
实际开发中,我们往往还会遇到列表页数据修改要使用modal的情况,如果是一般的循环展示,相信大多数人看了modal的基本使用都会操作,但是结合gridview估计有些人就开始吃不消了,我们看看如何解决这个问题!
1、gridview的操作增加[更新]按钮,并指定data-toggle data-target class以及data-id的值
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[ 'class' => 'yii\grid\ActionColumn' , 'template' => '{update}' , 'buttons' => [ 'update' => function ( $url , $model , $key ) { return Html::a( '更新' , '#' , [ 'data-toggle' => 'modal' , 'data-target' => '#update-modal' , 'class' => 'data-update' , 'data-id' => $key , ]); }, ], ], |
2、为更新添加modal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php use yii\bootstrap\Modal; // 更新操作 Modal::begin([ 'id' => 'update-modal' , 'header' => '<h4 class="modal-title">更新</h4>' , 'footer' => '<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>' , ]); $requestUpdateUrl = Url::toRoute( 'update' ); $updateJs = <<<JS $( '.data-update' ).on( 'click' , function () { $.get( '{$requestUpdateUrl}' , { id: $(this).closest( 'tr' ).data( 'key' ) }, function (data) { $( '.modal-body' ).html(data); } ); }); |
JS;
1
2
3
|
$this ->registerJs( $updateJs ); Modal:: end (); ?> |
3、修改我们的update方法
1
2
3
4
5
6
7
8
9
10
11
|
public function actionUpdate( $id ) { $model = $this ->findModel( $id ); if ( $model ->load(Yii:: $app ->request->post()) && $model ->save()) { return $this ->redirect([ 'index' ]); } else { return $this ->renderAjax( 'update' , [ 'model' => $model , ]); } } |
可以看出整个过程中跟我们之前说的modal基本使用没什么差别。但是到此并没有结束,相信大多数人可能会遇到下面常见的几个难以解决的问题:
yii2 modal中使用了select2 为什么搜索框不可搜索?
yii2 单个页面多个modal 为什么页面会共用一个,等数据加载完了才好?
yii2 单个页面多个modal,以单个页面添加和我们上面的gridview更新均使用modal为例,当使用select2时,为什么更新的select2会失效不起作用?
下面我们看如何一个一个的解决掉这些问题:
首先第一个问题,你只需要在modal使用begin的时候指定options选项的tabindex为false即可,参考如下:
1
2
3
4
5
6
|
Modal::begin([ // ...... 'options' => [ 'tabindex' => false ], ]); |
第二个和第三个问题,都是在单个页面中使用多个modal所引起的,为了说明问题,我们在某列表内[创建]按钮和gridview中[更新]按钮中均使用modal。按照我们Yii2中如何使用modal弹窗(基本使用)和本篇文章所述,第一个问题很明显是
1
|
$( '.modal-body' ).html(data); |
所引起的,多个modal,在我们第一次使用modal之后给所有modal的body赋值了,以至于在后面使用其他modal时,在未请求到数据之前均显示相同内容的bug。解决该问题只需要在每次异步请求之后对各自的modal-body单独赋值即可,代码可参考如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$( '#create' ).on( 'click' , function () { $.get( 'url' , {}, function (data) { $( '#create-modal' ).find( '.modal-body' ).html(data); // $('.modal-body').html(data); } ); }); $( '.data-update' ).on( 'click' , function () { $.get( '{$requestUpdateUrl}' , { id: $(this).closest( 'tr' ).data( 'key' ) }, function (data) { $( '#update-modal' ).find( '.modal-body' ).html(data); // $('.modal-body').html(data); } ); }); |
看最后一个问题,使用过select2的同学要注意了!!!
如果说像我们本篇主题所介绍的例子这样,form中带select2的话,就会导致仅仅在[创建]时select2正常,[更新]操作时select2字段“隐藏”的效果!
这其实是同一页面相同select2对应的id导致的,解决该问题只需要在每次异步请求数据之前,移除掉页面上所有已存在的表单项即可。看具体实现:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$( '#create' ).on( 'click' , function () { // 有效避免multiply modal select2的问题 // 移除异步加载过来的form表单 $( '.document-nav-form' ).remove(); $.get( '{$requestUrl}' , {}, function (data) { $( '#create-modal' ).find( '.modal-body' ).html(data); } ); }); $( '.data-update' ).on( 'click' , function () { // 有效避免multiply modal select2的问题 // 移除异步加载过来的form表单 $( '.document-nav-form' ).remove(); $.get( '{$requestUpdateUrl}' , { id: $(this).closest( 'tr' ).data( 'key' ) }, function (data) { $( '#update-modal' ).find( '.modal-body' ).html(data); } ); }); |
以上所述是小编给大家介绍的yii2中结合gridview如何使用modal弹窗实例代码详解的全部叙述,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!