天天看點

TP5 傳遞參數格式問号型index.html?id=417和靜态型index/pid/417/id/b.html(網址url跳轉 不帶問号)

index/pid/417/id/b.html

傳遞參數格式一:

{:url('about',['pid'=>$id,'id'=>$vo.id])}
           

傳遞參數格式二:

index.html?id=417

二、在模闆中URL中加放變量

格式:<a href="{:url('index/'.$controller.'/details',['id'=>$rs.pid])}" target="_blank" rel="external nofollow" target=

三、在LAYUI中

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')}';
				  }
		  	});
		});
	});