一个类继承了基类,在一个访问中修改了基类的数据,另外的一个子类直接读取了上个基类的赋值```php class UserService extends BaseService { public function index() { $this->view = 'system/user/index'; $current_page = request()->input('page', 1); ...
我发现这个数据库的组件和laravel的数据库组件一致,应该都是一样的,简单写了下模型关联,并且正常。但是文档里面只有简单的介绍CURD并没有介绍组件的模型关联,可以补充模型关联文档 class Da extends Model { protected $table = 'test1'; protected $guarded = []; public $timestamps = false...