如何在此调度程序中传递参数?

How can I pass params in this dispatcher?

我正在使用这个 addon code:

您看到 Dispatcher, the Controllerindexshow 调度程序。

我有一个问题:

URL 就像:{$modulelink}&action=show

但是如何在这种类型的调度程序中传递参数?比如{$modulelink}&action=show&age=25&gender=1,那么我在show可以得到参数age=25gender=1.

你可以在里面定义它们 this function:

$age = isset($_REQUEST['age']) ? $_REQUEST['age'] : '';

按照 "module's way" 进行扩展需要在几个地方编辑代码,而且不够灵活,所以我建议采用上述解决方案。