yii2怎么将其他模板引入内容模板页面

yii2怎么将其他模板引入内容模板页面

在view文件中,如user.php的view文件。

<?php defined(&#39;YII_ENV&#39;) or exit(&#39;Access Denied&#39;);   /**  * Created by PhpStorm.  * User: Administrator  * Date: 2019/8/27  * Time: 11:18  */   use yiiwidgetsLinkPager;   $urlManager = Yii::$app->urlManager; $this-&gt;title = '业务员列表'; $this-&gt;params['active_nav_group'] = 2; ?&gt;   <div>     <div>         <span>= $this-&gt;title ?&gt;</span>         <ul>             <li>                 <a>createUrl(['mch/salesman/salesman-edit']) ?&gt;"&gt;添加业务员</a>             </li>         </ul>     </div>     <div>         <table>             <thead>             <tr>                 <th>ID</th>                 <th>手机</th>                 <th>姓名</th>                 <th>绑定用户</th>                 <th>修改时间</th>                 <th>操作</th>             </tr>             </thead>             <tbody>             <?php  foreach ($list as $index => $val) : ?&gt;                 <tr>                     <td>                         <span>= $val['id']?&gt;</span>                                   </td>                     <td>= $val['mobile'] ?&gt;</td>                     <td>= $val['truename'] ?&gt;</td>                     <td>= $val['user_id'];?&gt;</td>                      <td>= Yii::$app-&gt;formatter-&gt;asDatetime($val['edittime'],"Y-M-d H:m");?&gt;</td>                     <td>                         <a>createUrl(['mch/salesman/salesman-edit', 'id' =&gt; $val['id']]) ?&gt;"&gt;修改</a>                         <a>createUrl(['mch/salesman/salesman-del', 'id' =&gt; $val['id']]) ?&gt;"&gt;删除</a>                     </td>                 </tr>             <?php  endforeach; ?>             </tbody>         </table>         <?php  echo $this->render('@app/views/layouts/paginator.php',['pagination'=&gt;$pagination]);?&gt;     </div> </div> <script>     $(document).on(&#39;click&#39;, &#39;.nav-item1&#39;, function () {         if($(this).find(".trans")[0].style.display==&#39;inline-block&#39;){             $(this).find(".trans")[0].style.display=&#39;inline&#39;;         }else{             $(this).find(".trans")[0].style.display=&#39;inline-block&#39;;         }         $(&#39;.bg-&#39;+$(this).index(".nav-item1")).toggle();     });      $(document).on(&#39;click&#39;, &#39;.del&#39;, function () {         if (confirm("是否删除该记录,删除后不可恢复?")) {             $.ajax({                 url: $(this).attr(&#39;href&#39;),                 type: &#39;get&#39;,                 dataType: &#39;json&#39;,                 success: function (res) {                     alert(res.msg);                     if (res.code == 0) {                         window.location.reload();                     }                 }             });         }          return false;     }); </script>

(相关教程推荐:yii框架

使用:

<?php  echo $this->render('@app/views/layouts/paginator.php',['pagination'=&gt;$pagination]);?&gt;

进行引入,要注意的是,在render前使用输出语句echo,显示子模板内容,参数的使用同在action中,@app模板变量代表主文件夹。

子模板代码如下:

<?php  use yiiwidgetsLinkPager;?><div> 	<nav>         <?php             echo LinkPager::widget([             &#39;pagination&#39; => $pagination,             'prevPageLabel' =&gt; '上一页',             'nextPageLabel' =&gt; '下一页',             'firstPageLabel' =&gt; '首页',             'lastPageLabel' =&gt; '尾页',             'maxButtonCount' =&gt; 5,             'options' =&gt; [                 'class' =&gt; 'pagination'             ],             'prevPageCssClass' =&gt; 'page-item',             'pageCssClass' =&gt; "page-item",             'nextPageCssClass' =&gt; 'page-item',             'firstPageCssClass' =&gt; 'page-item',             'lastPageCssClass' =&gt; 'page-item',             'linkOptions' =&gt; [                 'class' =&gt; 'page-link'             ],             'disabledListItemSubTagOptions' =&gt; [                 'tag' =&gt; 'a',                 'class' =&gt; 'page-link'             ]         ])?&gt;     </nav><div>共= $pagination-&gt;totalCount ?&gt;条数据</div> </div>

更多编程相关内容学习,请关注php中文网yii框架栏目!

© 版权声明
THE END
喜欢就支持一下吧
点赞9 分享