我看到路由器隐藏了控制器和操作,而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参数(如果我理解正确的话)。我有关于如何在网址中隐藏控制器和操作的红篇文章,但我怎么能这样做呢?先感谢您!
附: page-33
- 第一部分,例如page
是存储在db中的页面的标题,第二部分是33
是ID。
答案 0 :(得分:2)
我将举一个例子,我希望你会看到它的模式如何使它在你的特定情况下工作。
假设你想要实现一个简单的搜索。有一个搜索表单,您将动作的参数提交给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
)
);
}
在此之后,将url规则设置在url-manager配置文件中,如下所示:
return [
'class' => 'yii\web\UrlManager',
'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
]
因此,如果您的应用程序识别规则,它将解析它并将请求发送到正确的路由。
您需要在SearchController中执行其他操作:
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);
}