缩略图模块代码

原创 2018-11-28 15:41:33 359
摘要:<?phpnamespace app\admin\model;use \think\Model;class NewsPicModel extends Model{    protected $table = 'news_pic';    protected $pk = 'id';}<?phpnamespace ap
<?php
namespace app\admin\model;
use \think\Model;

class NewsPicModel extends Model
{
    protected $table = 'news_pic';

    protected $pk = 'id';
}
<?php


namespace app\admin\controller;

use app\admin\controller\Common;
use app\admin\model\ProductModel;
use app\admin\model\ProductPicModel;
use think\facade\Request;
use think\facade\Session;

class ProductPic extends Common
{
    public function index()
    {
        // 实例化模型
        $proPic = new ProductPicModel();
        $productPic = $proPic->order('id', 'desc')->paginate(4);
        $this->view->productPic = $productPic;
        // 渲染产品缩略图列表
        return $this->fetch();
    }

    public function add()
    {
        // 查询所有产品数据
        $product = ProductModel::all();
        // 将数据赋值给模板
        $this->view->product = $product;
        // 渲染产品缩略图添加界面
        return $this->fetch();
    }

    public function upload()
    {
        // 获取上传的图片信息
        $file = Request::file('file');
        // 验证图片信息并移动到指定目录
        if ($info = $file->validate(['ext' => 'jpg,jpeg,png,gif'])->move('upload')) {
            // 拼接图片路径
            $fileName = '/upload/' . $info->getSaveName();
            // 返回成功信息
            return json([1, '上传成功!', 'data' => $fileName]);
        } else {
            // 返回错误信息
            return $file->getError();
        }
    }

    public function DoAdd()
    {
        // 获取提交数据
        $data = Request::param();
        // 添加时间
        $data['time'] = time();
        // 添加管理员
        $data['username'] = Session::get('username');
        // 实例化模型
        $proPic = new ProductPicModel();
        // 存储并验证
        if ($proPic->save($data)) {
            // 返回对应的数据
            return ['res' => 1, 'msg' => '发布成功!'];
        } else {
            return ['res' => 0, 'msg' => '发布失败!'];
        }
    }

    public function del()
    {
        // 获取要删除产品的id
        $productId = Request::param('id');
        // 实例化模型
        $productPic = new ProductPicModel();
        // 删除并验证
        if ($productPic->destroy($productId)) {
            return ['res'=>1,'msg'=>'删除成功!'];
        }
    }
}


批改老师:韦小宝批改时间:2018-11-28 15:43:24
老师总结:嗯!写的很不错哦!代码完整!但是下次记得给代码加一下高亮哦!

发布手记

热门词条