优化 刷新接口路由

This commit is contained in:
何秀钢 2019-10-06 16:48:40 +08:00
parent 69352158bf
commit b621ed09a9

View File

@ -183,11 +183,11 @@ class InterfaceList extends Base {
$tplOriginStr = file_get_contents($tplPath);
$listInfo = AdminList::all(['status' => 1]);
$tplStr = '';
$tplStr = [];
foreach ($listInfo as $value) {
$tplStr .= 'Route::rule(\'' . addslashes($value->hash) . '\',\'api/' . addslashes($value->api_class) . '\', \'' . $methodArr[$value->method] . '\')->middleware([\'ApiAuth\', \'ApiPermission\', \'RequestFilter\', \'ApiLog\']);';
array_push($tplStr, 'Route::rule(\'' . addslashes($value->hash) . '\',\'api/' . addslashes($value->api_class) . '\', \'' . $methodArr[$value->method] . '\')->middleware([\'ApiAuth\', \'ApiPermission\', \'RequestFilter\', \'ApiLog\']);');
}
$tplOriginStr = str_replace(['{$API_RULE}'], [$tplStr], $tplOriginStr);
$tplOriginStr = str_replace(['{$API_RULE}'], [implode($tplStr, "\n ")], $tplOriginStr);
file_put_contents($apiRoutePath, $tplOriginStr);