作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
id}}" MyController.p-6ren">
如何将值“{{$ item-> id}}”发送到 Controller 中的某些方法?
例如show.blade.php - 包含值:
"{{$ item-> id}}"
MyController.php - 包含方法:
public function results(Request $request){
//and here I want to use the value {{$ item-> id}}
}
最佳答案
只需制作一个表格并发布它,或者有一些超链接
<form method="POST" action="/route_to_your_controller">
{{ csrf_field() }}
<input type="hidden" name="item_id" value="{{$item->id}}" required>
</form>
路线
Route::post('/route_to_your_controller', 'yourController@results');
Controller
public function results(Request $request){
{
$name = $request->input('item_id')
}
关于javascript - Laravel - 如何将 Blade View 文件中的某些参数值发送到 Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49480911/
我是一名优秀的程序员,十分优秀!