CakePHP -将多个值从视图元素传递到控制器

xoshrz7s  于 2022-11-12  发布在  PHP
关注(0)|答案(1)|浏览(143)

我想从视图中传递一些值给我的控制器。
实际上,我使用的是以下代码:

<?
echo $this->element('produtos-categoria', array(
    'categoria_id' => $produtos['Produto']['categoriasproduto_id'],
    'produto_id' => $produtos['Produto']['id']
));
?>

但我没能在我的控制器中得到第二个值,只是第一个值传来了:

public function list_categories($categoria_id = null, $produto_id = null ) {
        pr($produto_id); exit; //empty
    }

有谁能帮忙如何得到第二个值?

vulvrdjw

vulvrdjw1#

我不知道你想达到什么目的,但是要获得第二个变量,你需要为你的方法设置第二个参数。

// If you want to set variable from a function and get it from an other function
public function an_other_function(){
    $this->listacategorias(22, 333);
}

public function listacategorias($categoria_id = null, $produto_id = null ) {
    var_dump($categoria_id);
    var_dump($produto_id);
}

// If you want to set and get variable from url
host_or_domain_name/controller_name/listacategorias/22/33

相关问题