How can I get new CSRF token in LARAVEL by using ajax

前端 未结 2 759
我在风中等你
我在风中等你 2021-01-18 01:53

I have created a form which is having a lot of fields and user can create an unlimited field in it. If a user spends more time on it CSRF token get expires and when he clic

2条回答
  •  长情又很酷
    2021-01-18 02:05

    Just add this to your script

    
    

    And make sure you have added token to your meta tag like below.

    
    

    I hope this will work for you.

    Link https://laravel.com/docs/5.4/csrf#csrf-x-csrf-token

    If you still found the same issue then please review these pieces of stuff

    1. Handling expired token in Laravel

    2. https://laracasts.com/discuss/channels/laravel/csrf-token-mismatch-error-on-session-timeout-form?page=1

    And Make sure you take a look at all answers, not only checked one

提交回复
热议问题