我正在嘗試訪問模型中的函數,在我的視圖中codeigniter和它的不工作。 有人可以告訴我問題在哪裏。調用視圖中的模型函數
MODEL:
function gettemplates()
{
$sql = "select * from srs_templates";
$query = $this->db->query($sql);
$result = $query->result_array();
echo "<pre>"; print_r($result);exit;
return $result;
}
VIEW:
<select id="special" >
<?php echo $this->dashboard_ext_model->gettemplates(); ?>
</select>
爲什麼要訪問模型?檢查模型是否已經加載。 –
告訴使用錯誤你得到了什麼? – Manwal
正如你可以看到@Manwal我試圖在模型函數的第四行上打印取出的值,但輸出是完全空白頁面,是的,我已經加載模型。 –