// +---------------------------------------------------------------------- namespace app\http\form; use think\facade\View; /** * @title 后台中间件 */ class Form { public static function render($field, $data){ if (in_array($field['type'], ['string', 'text'])) { $field['type'] = 'text'; } $class = "app\\http\\form\\factory\\" . ucfirst($field['type']); if (class_exists($class)) { $elem = new $class($field, $data); }else{ $elem = new \app\http\form\Factory($field, $data); } return $elem->show(); } }