产品缩略图模块

Original 2018-11-28 17:31:01 209
abstract:<?phpnamespace 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 Prod

<?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'=>'删除成功!'];

        }

    }

}


Correcting teacher:天蓬老师Correction time:2018-11-28 17:40:37
Teacher's summary:业务非常的完整 , CURD 操作, 是我们平时操作数据库最常用的功能

Release Notes

Popular Entries