第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

無法通過按鈕發(fā)布數(shù)據(jù)

無法通過按鈕發(fā)布數(shù)據(jù)

PHP
ibeautiful 2023-03-26 14:07:36
我正在嘗試通過按下按鈕通過隱藏字段將數(shù)據(jù)發(fā)布到數(shù)據(jù)庫但是我面臨的錯(cuò)誤是419 Page Expired這是我的觀點(diǎn):-<div><h1> All Posts </h1>@if(count($user) > 0)  @foreach($user as $post)<form action="/f" method="POST"><input type="hidden" id="friends" name="friends" value="{{$post->id}}" /><button type="submit" class="btn btn-primary">                                    {{ __('chat') }}                                </button></form><div class="well"> <a href="/profile/1"<button class="button btn-success">chat</button>></a>  <h3>{{$post->title}}</h3>  <h4>{{$post->body}}</h4>  <small>written on {{$post->created_at}}</small></div>@endforeach@else   <p>No Forms Found</p>@endif</div>這是我的路線:-Route::post('/f', 'FriendsController@store');這是我的控制器:-<?phpnamespace App\Http\Controllers;use Illuminate\Http\Request;class FriendsController extends Controller{    public function store(Request $request){   dd($request->all());    post::create([        'friends' => $request->friends,        ]);     return redirect('/profile/' . auth()->user()->id);}}我可能在我的商店方法中犯了錯(cuò)誤請(qǐng)檢查并讓我知道它有什么問題我只是一個(gè)初學(xué)者 - 謝謝
查看完整描述

1 回答

?
白豬掌柜的

TA貢獻(xiàn)1893條經(jīng)驗(yàn) 獲得超10個(gè)贊

錯(cuò)誤 419 表示頁面已過期,在 laravel 中,它來自在發(fā)出非 GET 請(qǐng)求時(shí)沒有或無效的 CSRF 令牌。您需要在表單中添加一個(gè) CRSF 令牌,例如在表單聲明之后添加 @csrf:


<form action="/f" method="POST">

@csrf

<input type="hidden" id="friends" name="friends" value="{{$post->id}}" />

或者這樣:


<form action="/f" method="POST">

 {{csrf_field()}}

<input type="hidden" id="friends" name="friends" value="{{$post->id}}" />


查看完整回答
反對(duì) 回復(fù) 2023-03-26
  • 1 回答
  • 0 關(guān)注
  • 141 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)