新しい製品カテゴリーを追加
#新しい製品カテゴリ
CateController.class.php コントローラー
<?php namespace Admin\Controller; use Think\Controller; class CateController extends CommonController { public function index(){ $this->display(); } public function add(){ $cate=D('Cate'); if (IS_POST) { if($cate->create()){ if ($cate->add()) { $this->success('添加商品分类成功',U('Cate/add')); }else{ $this->error('添加商品分类失败!'); } }else{ $this->error($cate->getError()); } return; } $cateres=$cate->select(); $this->assign('cateres',$cateres); $this->display(); } }
CommonController は、テンプレート カテゴリに割り当てられたパブリック コントローラー
$cateres=$cate->select(); $this->assign('cateres',$cateres);を引き続き継承します。 CateModel.class.php
#
<?php namespace Admin\Model; use Think\Model; class CateModel extends Model { protected $_validate = array( array('catename','require','管理员名称不得为空!',1), ); }分類の試行を追加
##名前を追加せずに送信
##検証が有効になります
##