6.1Base.php文件主讲人:谭丽君微信小程序开发
1.Base.php文件功能
定义全局数据和公用的方法。
2Base.php文件代码框架
序号代码块说明(1)declare(strict_types=1);namespaceapp\controller;useapp\common\controller\Controller;申明严格模式定义命名空间使用类?(2)classBaseextendsController{protected$imagePath;//__construct函数//resultJson()函数//resultSuccess()函数//resultError()函数?}定义Base类定义图片根域名变量定义构造函数定义resultJson函数定义resultSuccess函数定义resultError函数
3.Base类中定义的成员函数序号Base类中定义的函数函数功能①publicfunction__construct(\think\App$app){//继承父类的构造函数:parent::__construct($app);//获取域名$this-imagePath=$this-request-domain();}把当前域名赋值给图片根域名变量②protectedfunctionresultJson($code=200,$msg=,$data=[]){$data=[code=$code,msg=$msg,data=$data];returnjson($data);}返回封装后的json数据?③protectedfunctionresultSuccess($data=[],$msg=success){return$this-resultJson(200,$msg,$data);}返回操作成功的json数据?④protectedfunctionresultError($msg=error,$data=[]){return$this-resultJson(400,$msg,$data);}}返回失败后的json数据