嘿,View
在我加载视图文件后在我的课堂上,我render()
应该访问我的数据,例如:
$this->model;
或喜欢:
$this->data['model'];
或在我包含视图文件之前的 render() 方法中具有以下内容:
$model = $this->data['model'];
// and then in my view file I can access the data by just calling it locally
$model->getSomething();
从我的视图文件中?
这三种方式都有效,但我开始认为$this->data['model'];
是从视图文件中访问数据的正确方式。
哪个是正确的方法?
谢谢。