返回 缩略图模块代码... 登陆

缩略图模块代码

在路上 2018-11-28 15:41:33 593
<?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'=>'删除成功!'];
        }
    }
}


最新手记推荐

• 用composer安装thinkphp框架的步骤 • 省市区接口说明 • 用thinkphp,后台新增栏目 • 管理员添加编辑删除 • 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消 回复 发送