yii2:带破折号的控制器动作参数?

发布于 2025-01-19 06:16:06 字数 339 浏览 0 评论 0原文

如果我有一个类似于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话难免假 2025-01-26 06:16:06

当 yii\web\Controller 调用操作时,它只绑定名称完全匹配的参数。 PHP 中的变量名不能使用破折号,因此它不可能像这样匹配。

如果您确实希望 URL 中的参数为 customer-id=XXX 那么您可以做的最简单的事情就是跳过操作方法定义中的参数并在操作本身期间获取它:

public function actionContact() {
    $customerId = $this->request->get('customer-id');
    // or
    $customerId = \Yii::$app->request->get('customer-id');

    // ...
}

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:

public function actionContact() {
    $customerId = $this->request->get('customer-id');
    // or
    $customerId = \Yii::$app->request->get('customer-id');

    // ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文