使用 csrf_token 的未知错误。 Laravel

Unknown errors using csrf_token. Laravel

我需要使用 csrf_token(来自 laravel)连接一些文件,但出现未知错误,例如:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="csrf-token" content="{{ csrf_token() }}">

        <title>Auth</title>

        <link rel="stylesheet" href="{{ asset('css/app.css) }}">

    </head>
    <body>
        <div id="app"></div>

        <script>
            var BASE_URL = '{{ URL::to('/') }}';
        </script>

        <script src="{{ asset('js/app.js') }}"></script>
    </body>
</html>

您漏掉了一句话

而不是

<link rel="stylesheet" href="{{ asset('css/app.css) }}">

使用

<link rel="stylesheet" href="{{ asset('css/app.css') }}">

第二次,而不是

var BASE_URL = '{{ URL::to('/') }}';

使用

var BASE_URL = "{{ URL::to('/') }}";