<?php /** * 【考试中心-后台】添加试卷分类 * AddController.class.php * User: 何岳龙 * Date: 2017年5月25日15:52:23 */ namespace Apicp\Controller\Category; class AddController extends AbstractController { public function Index_post() { $params = I('post.'); $cate_data = $this->cate_service->cate_validation($params, true); // 添加分类 $this->_result['ec_id'] = $this->cate_service->insert($cate_data); return true; } }