修改调用方式
This commit is contained in:
parent
6c54911825
commit
34d6a373a5
|
@ -6,6 +6,10 @@ use app\home\model\Job;
|
|||
|
||||
class Index extends Common {
|
||||
|
||||
public function _init() {
|
||||
echo 1;
|
||||
}
|
||||
|
||||
public function index() {
|
||||
$model = model(Job::class);
|
||||
return [
|
||||
|
|
|
@ -64,7 +64,7 @@ class Database {
|
|||
$this->config = $config = Register::get('Config')->get('db');
|
||||
$this->table = $config['prefix'] . $table;
|
||||
$this->pk = $pk;
|
||||
$this->setDriver($driver, Register::get('Config')->get('db'));
|
||||
$this->setDriver($driver, $this->config);
|
||||
}
|
||||
|
||||
private function __clone() {
|
||||
|
|
|
@ -122,14 +122,13 @@ class Router {
|
|||
$this->beforeRoute();
|
||||
|
||||
$object = new $this->class();
|
||||
if (method_exists($object, '_init')) {
|
||||
$reflectionClass = new \ReflectionClass($this->class);
|
||||
if ($reflectionClass->hasMethod('_init')) {
|
||||
$data = $object->_init();
|
||||
}
|
||||
if (!isset($data) || $data == null) {
|
||||
$data = call_user_func_array([
|
||||
$object,
|
||||
$this->action
|
||||
], $this->param);
|
||||
$reflectionMethod = new \ReflectionMethod($this->class, $this->action);
|
||||
$data = $reflectionMethod->invokeArgs($object, $this->param);
|
||||
}
|
||||
|
||||
$this->afterRoute($data);
|
||||
|
|
Loading…
Reference in New Issue