0
我有一個模型從我的數據庫中提取一個我希望能夠在我的視圖中顯示的列表。將模型中的值傳遞給Kohana中的視圖3
這個模型看起來是這樣的:
Class Model_services extends Model
{
public function get_services_list() {
$result = DB::select('*')->from('services')
->execute()
->as_array();
return $result;
}
}
我的控制器看起來是這樣的:
public function action_index()
{
$this->template->title = "services";
$this->template->header = View::factory('header');
$services = Model::factory('services');
$this->template->content = View::factory('services')
->bind('result',$result)
$this->template->footer = View::factory('footer');
}
如何呈現在視圖從模型中的變量?
感謝Kowser快速回復,我使用的模板控制器,現在它給我這個錯誤「ErrorException [2]:htmlspecialchars()[function.htmlspecialchars]:無效的多字節序列在參數〜SYSPATH \ classes \ kohana \ debug.php [311]「我仍然不知道我做錯了什麼 – user731144
從我的經驗,我可以理解的事情$ item包含了一些具有unicode數據的東西,從而使該unicode數據成爲多字節序列。你可以嘗試使用print_r($ item)而不是Debug :: vars();作爲你的 – Kowser
,它只是空,它更好地調查你的模型。至少它不應該是空的,這是我的理解。 – Kowser