在 Laravel 9 中传递多个可选参数

发布于 2025-01-15 01:39:41 字数 648 浏览 0 评论 0原文

我正在尝试创建一条采用两个参数之一的路线。但是 dd 返回我 $b_id, null 而不是 null, $b_id。如何只传递 b 作为参数并省略 a?

web.php

Route::get('myroute/{a?}/{b?}', [MyController::class, 'testFunction'])
    ->name('test.testFunction');

控制器

public function testFunction( $a = null,  $b = null) 
{
    dd($a, $b);
    // stuff
}

Ajax 调用

function test($b_id) {
    $url = "{{ route('test.testFunction', ':b') }}";
    $url = $url.replace(":b", $b_id);
    $.ajax({
        url: $url,
        type: 'GET'
    })}

I am trying to create a route that takes either one of two parameters. However the dd returns me $b_id, null instead of null, $b_id. How can I pass only b as a parameter and omit a?

web.php

Route::get('myroute/{a?}/{b?}', [MyController::class, 'testFunction'])
    ->name('test.testFunction');

Controller

public function testFunction( $a = null,  $b = null) 
{
    dd($a, $b);
    // stuff
}

Ajax call

function test($b_id) {
    $url = "{{ route('test.testFunction', ':b') }}";
    $url = $url.replace(":b", $b_id);
    $.ajax({
        url: $url,
        type: 'GET'
    })}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

美羊羊 2025-01-22 01:39:41

目前这还不可能,但有一个解决方法。
您可以在命名数组中传递参数,并将路由更改为简单的 Route::get('myroute' ...)

route('test.testFunction', ['a' => 'xyz', 'b' => 'yzt'])
===== creates
http://myroute?a=xyz&b=yzt

然后您可以检查参数 ab 存在,如果存在则正常检索它们。

This is not really possible at the moment but there is a workaround.
You can pass the parameters in an named array and change the route to simply Route::get('myroute' ...):

route('test.testFunction', ['a' => 'xyz', 'b' => 'yzt'])
===== creates
http://myroute?a=xyz&b=yzt

Afterwards you can check if the parameters a or b are present and retrieve them normally if they are.

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