BaseApi.php
1.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace app\api\controller;
use app\common\controller\Api;
use think\Request;
class BaseApi extends Api
{
/**
* 获取数据
* @ApiInternal
* @param $name '字段'
* @param string $msg '异常提示'
* @param string $stu '请求方式'
*/
public function get_data($name,$msg = '字段不存在',$stu = 'post'){
$res = g($name,$stu);
if (!$res){
$this->error($msg);
}
return $res;
}
/**
* 获取数据数组
* @ApiInternal
* @param $name '字段'
* @param string $msg '异常提示'
* @param string $stu '请求方式'
*/
public function get_data_array($array = [],$stu = 'post'){
if (empty($array)){
$this->error('数组不能为空');
}
$data = [];
foreach ($array as $val){
$res = g($val[0],$stu);
if (!isset($res)){
$this->error($val[1]);
}
$data[$val[0]] = $res;
}
return $data;
}
}