Yii2 路由,仅包含 get 参数(隐藏控制器和操作)



我看到了控制器和操作被隐藏的路由,url 的构造像www.domain.com/en/page-33/category-28/product-89?param=some_param.在这个路由中,当我尝试使用var_dump(Yii::$app->getRequest()->getQueryParams())获取参数时,我得到了这样的数组:

array(4) { ["first_step"]=> string(7) "page-33" ["second_step"]=> string(11) "category-28" ['product']=> string(10) "product-89" ['param']=> string(10) "some_param"}

我该怎么做?我看到了规则,它们是

'<first_step>/<second_step>/<product>/<test>/<test2>/<test3>/<test4>' => 'page/index',
'<first_step>/<second_step>/<product>/<test>/<test2>/<test3>' => 'page/index',
'<first_step>/<second_step>/<product>/<test>/<test2>' => 'page/index',
'<first_step>/<second_step>/<product>/<test>' => 'page/index',
'<first_step>/<second_step>/<product>' => 'page/index'
'<first_step>//<product>' => 'page/index', 
'<first_step>/<second_step>' => 'page/index',
'<first_step>' => 'page/index'

我试图在家里这样做,但是当我转储Yii::$app->getRequest()->getQueryParams()时,它是一个空数组。这个网址如何像GET参数一样(如果我理解正确的话(。我红了关于如何在 url 中隐藏控制器和操作的文章,但我如何做到这一点?提前谢谢你! 附言page-33- 第一部分,例如page是存储在数据库中的页面标题,第二部分例如33是 ID。

我将举一个例子,我希望你能从中看到如何使其在您的特定情况下工作的模式。

假设您要实现一个简单的搜索。有您的搜索表单,您将操作的参数提交给SearchController::actionIndex().在这里,您可以处理发送给它的参数。

public function actionIndex()
{
$searchForm = new SearchForm();
if (Yii::$app->request->post()) {
$searchForm->load(Yii::$app->request->post());
$productType = $searchForm->productType;
$productName = $searchForm->productName;
$searchAttributes = $searchForm->attributes;
unset($searchAttributes['productName']); //unset what you want to be a nicely formatted part of the url, like domain.eu/productType/productName
unset($searchAttributes['productType']);
foreach ($searchAttributes as $key => $value) {
if (empty($value)) {
unset($searchAttributes[$key]);
}
}
$this->redirect(
array_merge(
['/search/list', 'type' => $producType, 'name' => $productName, 
$searchAttributes //this variable will contain all other parameters as regualer get parameters
)
);
}

在此之后,在网址管理器配置文件中设置您的网址规则,如下所示:

return [
'class' => 'yiiwebUrlManager',
'enablePrettyUrl' => true,
'showScriptName' => false,
'enableStrictParsing' => false,
'rules' => [
[
// /productType/productName
'pattern' => '<type>/<name>',
'route' => 'search/list',
'encodeParams' => false,
'defaults' => ['type' => null, 'name' => null],
],
//add other rules as you need
]

因此,这样,如果您的应用程序识别出规则,它将解析该规则并将请求发送到正确的路由。

您将需要在搜索控制器中执行其他操作:

public function actionList($type = null, $name = null) {
//do the search or anything you want to do here
$get = Yii::$app->request->get();
var_dump($get);
var_dump($type); 
var_dump($name);
}

相关内容

  • 没有找到相关文章

最新更新