博客列表 >首页与列表页模板

首页与列表页模板

龍__遇见彩虹的博客
龍__遇见彩虹的博客原创
2018年08月11日 16:49:372746浏览

首页与列表页模板

index.php   部分代码  控制器

<?php
namespace app\index\controller;

use app\common\controller\Base;
use app\common\model\ArtCate;
use app\common\model\Article;
use think\facade\Request;

/**
 * 网站首页
 */
class Index extends Base
{
	/**
	 * 显示网站首页
	 */
    public function index()
    {
    	//分类显示
    	$cateId = Request::param('cate_id');
    	//判断是否存在,然后分类显示
    	if(isset($cateId)){
    		$res = ArtCate::get($cateId);
    		$this->assign('cateName', $res->name);
    	}else{
    		$this->assign('cateName', '全部文章');
    	}
    	
    	
    	$this->assign('title', '网站首页');
    	return $this->view->fetch("index");
    }



index.html   前端页面

<h2>{$cateName}</h2><!--输出标题-->





*************************************

通过判断浏览器请求的ID进行比对

*************************************


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议