我正在爲我的圖像網站編寫控制面板。我有一個控制器稱爲類,看起來像這樣:如何在ci上創建方法
class category extends ci_controller
{
function index(){}// the default and when it called it returns all categories
function edit(){}
function delete(){}
function get_posts($id)//to get all the posts associated with submitted category name
{
}
}
我需要的是當我打電話http://mysite/category/category_name
我得到的所有職位,而無需調用get_posts()不必從URL調用它的方法。
我想不使用.haccess文件或路由。
有沒有辦法在CodeIgniter中實時創建方法?
這正是什麼路線是... – jcorry 2013-04-24 18:37:58
...看到這裏:http://ellislab.com/codeigniter/user-guide/general/routing.html – complex857 2013-04-24 18:38:22
我知道,我想讓你給我路線條件,區分控制器方法和類別管理器 – mohammed 2013-04-24 18:51:56