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

Pass multiple optional parameters in Laravel 9

我正在尝试创建一个采用两个参数之一的路由。但是 dd returns me $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'
    })}

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

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

之后可以检查参数ab是否存在,如果存在则正常获取。