为什么我把数据放到数组中 index.php中取不到呢?
$hello_str = 'Hello Candice!'; //创建一个数组 $data = array(); //把需要传递给视图的数据,放到数组当中 $data['view_hello_str'] = $hello_str; //使用renderPartial加载views文件下,当前controller名字目录下 return $this->renderPartial('index', $data); index.php:
$hello_str = 'Hello Candice!'; //创建一个数组 $data = array(); //把需要传递给视图的数据,放到数组当中 $data['view_hello_str'] = $hello_str; //使用renderPartial加载views文件下,当前controller名字目录下 return $this->renderPartial('index', $data); index.php:
2017-06-21
举报