接口响应数据格式,统一约定为 包含code 、msg、data 三个字段的 json字符串。
在应用中,定义快速响应数据的公共方法如下:
/**
* 密码加密的公共方法
*/
if (!function_exists('passwordEncrypt')) {
function passwordEncrypt($password){
$salt= '1910A';
return md5($salt.$password.$salt);
}
}
/**
* 公共响应方法
*/
if (!function_exists('responses')) {
/**
* 公共响应方法
* @param $code
* @param $msg
* @param $data
* @return \think\response\Json
*/
function responses($code,$msg,$data){
return json(['code' => $code,'msg' => $msg,'data' => $data]);
}
}
/**
* 公共响应成功方法
*/
if (!function_exists('success')) {
/**
* 公共响应成功方法
* @param string $code
* @param string $msg
* @param array $data
* @return \think\response\Json
*/
function success($code='200',$msg='ok',$data=[]){
return responses($code,$msg,$data);
}
}
/**
* 公共响应失败方法
*/
if (!function_exists('fail')) {
/**
* @param string $code
* @param $msg
* @param $data
* @return \think\response\Json
*/
function fail($code='2001',$msg='参数不正确',$data = []){
return responses($code,$msg,$data);
}
}
测试:
测试 封装的快速响应方法
?
|