没办法调试出来。运行后出现页面错误

来源:5-1 介绍下REST之前的重要协议:SOAP

慕慕0284577

2019-04-13

<?php


namespace app\api\controller\v1;

use app\api\validate\IDMustBePostiveInt;
use app\api\validate\TestValidate;
use think\Validate;
class Banner
{
   /**
    * 获取指定id的banner信息
    * @url /banner/:id
    * @http GEt
    * @id banner的id号
    *i
    */
  public function getBanner($id)
  {
      (new IDMustBePostiveInt())->goCheck();//拦截器
      $c = 1;
     //$validate = new IDMustBePostiveInt();
     //$validate->goCheck();
    // $banner = BannerModel::getBannerById($id);
    // if(!$banner){
      //   throw new MissException([
        //     'msg' => '请求banner不存在',
        //     'errorCode' => 40000
        // ]);
    // }
    // return $banner;

  }
}

<?php


namespace app\api\validate;

use think\Exception;
use think\Request;
use think\Validate;


class BaseValidate extends Validate
{
   public function goCheck()
   {
       $request = Request::instance();
       $params = $request->param();

       $result = $this->check($params);
       if (!$result){
          $error = $this->error;
          throw new Exception($error);
       }
       else{
           return true;
       }
   }
}

<?php


namespace app\api\validate;


use think\Validate;


class IDMustBePostiveInt extends Validate
{
   protected $rule = [
       'id' => 'require|isPositiveInteger'
   ];

   protected function isPositiveInteger($value, $rule = '', $data = '', $field = '')
   {
       if (is_numeric($value) && is_int($value + 0) && ($value + 0)>0) {
           return true;
       }
       else {
           return $field .'必须是正整数';
       }
   }
}

写回答

1回答

7七月

2019-04-13

这我怎么帮你呢。。。。错误是什么?调试的问题必须要调试解决,看代码也看不出来的。

0
2
7七月
回复
慕慕0284577
能不能把错误截图看看呢,这个这样弄真的解决不了问题啊,朋友
2019-04-13
共2条回复

微信小程序电商实战 从前端到后端的全流程精讲

全栈工程师/前后端都讲/架构思想/ RESTFul API、MySQL表设计

4805 学习 · 4382 问题

查看课程