4

我的类别控制器中有一个名为“插入”的函数。当我通过这样的 url 调用函数时:/categories/insert 它可以正常工作,但是如果我这样调用函数:/categories/insert/(最后是斜线),函数会被调用 3 次。

即使像这样调用我的编辑功能:/categories/edit/2 - 编辑功能被调用了三次。

在 config/routes.php 我只有默认路由。我的 .htaccess 是这样的:

RewriteEngine on
RewriteCond $1 !^(index\.php|images|include|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]  

编辑:

编辑功能的代码:

public function edit($id = '') 
{
    $this->load->helper("form");
    $this->load->library("form_validation");
    $data["title"] = "Edit category";

    $this->form_validation->set_rules('category_name', 'Category name', 'required');

    if (!$this->form_validation->run())
    {
        $data['category'] = $this->categories_model->get_categories($id);
        $this->load->view("templates/admin_header", $data);
        $this->load->view("categories/edit", $data);
        $this->load->view("templates/admin_footer", $data); 
    }
    else
    {
        $this->categories_model->update($id);
        // other logic
    }
}
4

1 回答 1

0

** 编辑 ** http://your.dot.com/insert在没有 $arg 数据的情况下调用公共函数 insert($arg)。 http://your.dot.com/insert/使用 'index.php' 作为 $arg 调用插入。

路由.php

$route['edit/(:any)'] = 'edit/$1'

接受来自查询字符串的任何参数:yoursite.com/edit/paramyoursite.com/edit/2
它需要一个名为edit的方法。

如果您使用$route=['default_controller'] = 'foo', 作为所有方法的容器,请将路线更改为$route['edit/(:any)'] = 'foo/edit/$1'或类似:$route['(:any)'] = 'foo/$1/$2'作为路线的最后一行(注意:这适用于yoursite.com/insert/paramyoursite.com/edit/参数

foo.php

    public function insert() { ... }

    public function edit($id=null) { ... }

    /* End of file foo.php */


.htaccess

    RewriteCond $1 !^(index\.php)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php?$1 [L]
于 2013-05-10T15:11:56.537 回答