作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试通过中提到的方法生成超链接
http://www.yiiframework.com/doc-2.0/guide-helper-html.html#hyperlinks像这样
Html::a('<b>Register</b>',
['story/create', array('id' =>39,'usr'=>'11')],
['class' => 'profile-link'])
story/create/id/39/usr/11
这样的网址
story/create?1%5Bid%5D=39&1%5Busr%5D=1
'urlManager' => [
'class' => 'yii\web\UrlManager',
// Disable index.php
'showScriptName' => false,
// Disable r= routes
'enablePrettyUrl' => true,
'rules' => array(
'<controller:\w+>/<id:\d+>' => '<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
'<controller:\w+>/<action:\w+>' => '<controller>/<action>',
),
], also.
最佳答案
与生成 url
像这样使用(查看更多 http://www.yiiframework.com/doc-2.0/guide-helper-url.html ):
Html::a('<b>Register</b>',
['story/create', 'id' =>39,'usr'=>'11'],
['class' => 'profile-link'])
rules' => array(
....
'story/create/<id:\d+>/<usr:\d+>' => 'story/create',
),
story/create/39/11
public function actionCreate($id, $usr)
关于yii2 - 使用干净的 url 在 yii2 中的超链接中传递多个参数,Html::a() 不会生成干净的 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29250207/
我是一名优秀的程序员,十分优秀!