1 回答

TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超2個贊
更新
我終于通過嘗試使用 Postman 發(fā)布它給出了錯誤 419 頁面已過期,因?yàn)樗鼪]有 csrf 令牌(因?yàn)槲覍⑵渲苯影l(fā)布到控制器而沒有視圖可以添加 csrf),所以我添加了
異常中間件文件夾中VerifyCsrfToken.php上的url,所以它變成這樣
class VerifyCsrfToken extends Middleware
{
/**
* Indicates whether the XSRF-TOKEN cookie should be set on the response.
*
* @var bool
*/
protected $addHttpCookie = true;
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
//
'/lapor/android'
];
}
也許還有另一種方法可以做到這一點(diǎn),例如在控制器內(nèi)生成 csrf 令牌。
希望這會對某人有所幫助。
- 1 回答
- 0 關(guān)注
- 146 瀏覽
添加回答
舉報