gpt4 book ai didi

laravel - 需要将数组传递给路由和 Controller

转载 作者:行者123 更新时间:2023-12-02 18:25:10 24 4
gpt4 key购买 nike

我需要将数组传递给 View 中的路由和 Controller 。

我收到错误:

Missing required parameters for [Route: actBook] [URI: bookfromindex/actBook/{id}/{array}].

我的路线定义为:

Route::get('/bookfromindex/actBook/{id}/{array}', 'BookController@actBook')->name('actBook');

我的 Controller 功能定义为:

public function actBook(Request $request, $id, $array){

我在我的 View 中使用以下方式调用这条路线:

<a href="{{ route('actBook', $room->id, $array) }}" class="btn btn-default">დაჯავშნა</a>

如何防止此错误?

最佳答案

只是改变-

<a href="{{ route('actBook', $room->id, $array) }}" class="btn btn-default">დაჯავშნა</a>

至 -

<a href="{{ route('actBook', $room->id, serialize($array)) }}" class="btn btn-default">დაჯავშნა</a>

关于laravel - 需要将数组传递给路由和 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47695202/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com