yii2:带破折号的控制器动作参数?
如果我有一个类似于 https://example.com/controller/action?customer-id=7414
的 URL,如何在操作参数中获取 customer-id
?由于变量名称中不允许使用破折号,因此我无法执行以下操作!
public function actionContact($customer-id) { //syntax error! :)
// ...
}
文档通常都很出色,但在这一点上它只是沉默。我该如何解决这个问题?
If I have a URL like https://example.com/controller/action?customer-id=7414
how do I get customer-id
in my action parameters? Since a dash is not allowed in variables names I cannot do the following!
public function actionContact($customer-id) { //syntax error! :)
// ...
}
Documentation is usually excellent but on this exact point it's just silent. How do I solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当 yii\web\Controller 调用操作时,它只绑定名称完全匹配的参数。 PHP 中的变量名不能使用破折号,因此它不可能像这样匹配。
如果您确实希望 URL 中的参数为
customer-id=XXX
那么您可以做的最简单的事情就是跳过操作方法定义中的参数并在操作本身期间获取它:When
yii\web\Controller
calls action it only binds parameters which names match exactly. Dash cannot be used in variable name in PHP so there is no way it will ever match like that.If you really want to have param in URL as
customer-id=XXX
then easiest thing you can do, is skip param in action method definition and get it during action itself: