| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | 
							- <?php
 
- // +----------------------------------------------------------------------
 
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
 
- // +----------------------------------------------------------------------
 
- // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
 
- // +----------------------------------------------------------------------
 
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
 
- // +----------------------------------------------------------------------
 
- // | Author: 小夏 < 449134904@qq.com>
 
- // +----------------------------------------------------------------------
 
- namespace app\portal\validate;
 
- use app\admin\model\RouteModel;
 
- use think\Validate;
 
- class PortalCategoryValidate extends Validate
 
- {
 
-     protected $rule = [
 
-         'name'  => 'require',
 
-         'alias' => 'checkAlias',
 
-     ];
 
-     protected $message = [
 
-         'name.require' => '分类名称不能为空',
 
-     ];
 
-     protected $scene = [
 
- //        'add'  => ['user_login,user_pass,user_email'],
 
- //        'edit' => ['user_login,user_email'],
 
-     ];
 
-     // 自定义验证规则
 
-     protected function checkAlias($value, $rule, $data)
 
-     {
 
-         if (empty($value)) {
 
-             return true;
 
-         }
 
-         if (preg_match("/^\d+$/", $value)) {
 
-             return "别名不能为纯数字!";
 
-         }
 
-         $routeModel = new RouteModel();
 
-         if (isset($data['id']) && $data['id'] > 0) {
 
-             $fullUrl = $routeModel->buildFullUrl('portal/List/index', ['id' => $data['id']]);
 
-         } else {
 
-             $fullUrl = $routeModel->getFullUrlByUrl($data['alias']);
 
-         }
 
-         if (!$routeModel->existsRoute($value, $fullUrl)) {
 
-             return true;
 
-         } else {
 
-             return "别名已经存在!";
 
-         }
 
-     }
 
- }
 
 
  |