修改request

This commit is contained in:
wuyanwen 2020-01-09 22:20:57 +08:00
parent 6cc76c9f8e
commit 9673c62a14

View File

@ -2,15 +2,16 @@
namespace catcher\base; namespace catcher\base;
use app\Request; use app\Request;
use catcher\CatchAuth;
use catcher\exceptions\FailedException; use catcher\exceptions\FailedException;
use catcher\exceptions\ValidateFailedException; use catcher\exceptions\ValidateFailedException;
use think\Validate; use think\Validate;
class CatchRequest extends Request class CatchRequest extends Request
{ {
protected $auth; /**
* @var bool
*/
protected $needCreatorId = true;
/** /**
* 批量验证 * 批量验证
* *
@ -90,24 +91,10 @@ class CatchRequest extends Request
} }
// 设置默认参数 // 设置默认参数
if ($this->needCreatorId) {
$this->param['creator_id'] = $this->user()->id; $this->param['creator_id'] = $this->user()->id;
}
return true; return true;
} }
/**
* login user
*
* @time 2020年01月09日
* @return mixed
*/
public function user()
{
if (!$this->auth) {
$this->auth = new CatchAuth;
}
return $this->auth->user();
}
} }