我有一条路由,该路由本来是一个请求请求,并且在控制器内,我想知道我在该请求请求中发送的值,我是Laravel的新手。我该怎么办?
这是我的模型的代码:
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class OMeta extends Model
{
protected $fillable= ['n_bandera','h_entrada','h_salida','locacion','fecha','ticket','so'];
}
我想从发布请求中获取'n_bandera'
属性。我该如何在以下控制器功能中做到这一点:
public function store(Request $request){
// get the 'n_bandera' attribute from the $request
}
此外,我不想使用类似all()
的方法,因为我希望请求中的内容进入数据库中的不同表。
答案 0 :(得分:1)
public function store(Request $request) {
/* your form needs to have an input field name as n_bandera*/
$n_bandera = $request->n_bandera;
}
答案 1 :(得分:1)
public function store(Request $request){
$requestData = $request->all();
$n_bandera = $requestData['n_bandera'];
/* your form input field name */
}
希望对您有帮助
答案 2 :(得分:1)
public function store(Request $request){
//get the 'n_bandera' attribute from the $request
$n_bandera = $request->get('n_bandera');
}
答案 3 :(得分:1)
只需通过控制器方法以不同的方式检索表单数据:
如果您的表单字段名称为n_bandera,则控制器方法应为
use Illuminate\Http\Request;
public function store(Request $request){
$n_bandera = $request->get('n_bandera'); //use get method in request object
OR
$n_bandera = $request->input('n_bandera'); //use input method in request object
OR
$n_bandera = $request->n_bandera; //use dynamic property
}