Laravel 8 接收請(qǐng)求

2021-07-16 18:02 更新

要通過(guò)依賴(lài)注入獲取當(dāng)前 HTTP 請(qǐng)求實(shí)例,你應(yīng)該在控制器上引入 Illuminate\Http\Request 類(lèi)。傳入的請(qǐng)求實(shí)例將會(huì)由 服務(wù)容器 自動(dòng)注入:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class UserController extends Controller
{
    /**
     * 存儲(chǔ)一個(gè)新用戶(hù)
     *
     * @param  Request  $request
     * @return Response
     */
    public function store(Request $request)
    {
        $name = $request->input('name');

        //
    }
}


以上內(nèi)容是否對(duì)您有幫助:
在線(xiàn)筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)