為什么我把數(shù)據(jù)放到數(shù)組中 index.php中取不到呢?
?$hello_str = 'Hello Candice!'; //創(chuàng)建一個數(shù)組 $data = array(); //把需要傳遞給視圖的數(shù)據(jù),放到數(shù)組當(dāng)中 $data['view_hello_str'] = $hello_str; //使用renderPartial加載views文件下,當(dāng)前controller名字目錄下 return $this->renderPartial('index', $data); index.php:
2017-06-21
知道了,我改的是view目錄下的index.php,應(yīng)該修改hello文件夾下的index.php。