gpt4 book ai didi

laravel - 表单未路由到命名路由 Laravel 5.8

转载 作者:行者123 更新时间:2023-12-02 10:16:53 26 4
gpt4 key购买 nike

我知道我在这里做了一些非常基本的事情,但我似乎找不到问题。我的表单未路由至其命名路由。我的路由命名方式是否错误?

表单

<form action="{{route('inventory.deduct', 'test')}}" method="post">
@csrf
<div class="modal-body">
Enter number of items to issue for:
<input type="text" name="itemname" id="itemname" class="form-control" readonly>
<input type="text" id="itemid" name="itemid" hidden>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</form>

路线

Route::post('inventory/{id}/deduct', 'InventoryController@deduct')->name('inventory.deduct');

最佳答案

按如下方式更改您的路线参数..

<form action="{{route('inventory.deduct', ['id'=>$itemid])}}" method="post">

OR

<form action="{{route('inventory.deduct', $itemid)}}" method="post">

两者都可以工作..

关于laravel - 表单未路由到命名路由 Laravel 5.8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57863591/

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