サーチ…
入力の取得
入力を取得する主な方法は、コントローラにIlluminate\Http\Request
を注入することです。その後、データにアクセスする方法は多数あり、そのうちの4つは下の例にあります。
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class UserController extends Controller
{
public function store(Request $request)
{
// Returns the username value
$name = $request->input('username');
// Returns the username value
$name = $request->username;
// Returns the username value
$name = request('username');
// Returns the username value again
$name = request()->username;
}
}
input
機能を使用する場合、要求入力が利用できない場合のデフォルト値を追加することもできます
$name = $request->input('username', 'John Doe');
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow