这是我写的一小段代码。但我没有在视图中获取数据。它在视图中显示未定义的变量
控制器
$data= array();
$data['']= json_decode(file_get_contents('http://localhost:8888/api/colleges'));
$this->load->view('colleges/index',$data);
看法
foreach($data as $college) :
?>
<ul>
<li><label>ID:</label> <?php echo $college;?></li>
</ul>
<?php endforeach;?>