一个关于返回值的问题 [ 2.0 版本 ]
在控制器中把数据发送到视图我们总是用类似的方法:
return $this->render();
我想知道这里返回值的类型到底是什么呢?是一个对象吗?
谢谢!
最佳答案
-
/** * @param string $view the view name. * @param array $params the parameters (name-value pairs) that should be made available in the view. * These parameters will not be available in the layout. * @return string the rendering result. * @throws InvalidArgumentException if the view file or the layout file does not exist. */ public function render($view, $params = []) { $content = $this->getView()->render($view, $params, $this); return $this->renderContent($content); }
return string 类型。
其他 0 个回答
没有找到数据。
sk811229
注册时间:2018-05-23
最后登录:2022-10-06
在线时长:16小时47分
最后登录:2022-10-06
在线时长:16小时47分
- 粉丝0
- 金钱770
- 威望10
- 积分1030