赞
踩
- <?php
- namespace app\index\controller;
- use think\Controller;
- class Index extends controller
- {
- public function index()
- {
- $this->redirect('/admin/login/');
- }
- }
注意:要有 use think\Controller;
class Index extends controller
官方文档:https://www.kancloud.cn/manual/thinkphp5/118051
二、在模板中URL中加放变量
格式:<a href="{:url('index/'.$controller.'/details',['id'=>$rs.pid])}" target=
三、content: '{:url('add',['mid'=>$mid,'template'=>$template,'modl_name'=>$modl_name])}',
- $(document).on('click','#add',function(){
- layer.ready(function(){
- layer.open({
- type: 2,
- title: '增加',
- maxmin: true,
- area: ['80%', '90%'],
- content: '{:url('add',['mid'=>$mid,'template'=>$template,'modl_name'=>$modl_name])}',
- cancel: function(){ //刷新网页
- table.reload('idTest');//重新加载表格数据
- // self.location='{:url('index')}';
- }
- });
- });
- });
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。