「Php/laravel/laravel5/リクエストパラメータ取得」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→ファサードでパラメータ取得) |
|||
(同じ利用者による、間の5版が非表示) | |||
行1: | 行1: | ||
− | + | ==パラメータ取得== | |
use Illuminate\Http\Request; | use Illuminate\Http\Request; | ||
− | \Request::get('page') | + | public function index(Request $request) |
+ | { | ||
+ | $request->get('page'); | ||
+ | $request->url(); // ttp://localhost | ||
+ | |||
+ | ==ファサードでパラメータ取得== | ||
+ | use Illuminate\Http\Request; | ||
+ | public function index() | ||
+ | { | ||
+ | echo \Request::get('page'); | ||
+ | echo Request::get('page'); | ||
+ | |||
+ | \Requestとしないと以下エラーが出る可能性がある | ||
+ | production.ERROR: Non-static method Symfony\Component\HttpFoundation\Request::get() should not be called statically |
2018年2月6日 (火) 14:04時点における最新版
パラメータ取得
use Illuminate\Http\Request; public function index(Request $request) { $request->get('page'); $request->url(); // ttp://localhost
ファサードでパラメータ取得
use Illuminate\Http\Request; public function index() { echo \Request::get('page'); echo Request::get('page');
\Requestとしないと以下エラーが出る可能性がある
production.ERROR: Non-static method Symfony\Component\HttpFoundation\Request::get() should not be called statically