Laravel Jetstream 如何添加外部 javascript

Posted

技术标签:

【中文标题】Laravel Jetstream 如何添加外部 javascript【英文标题】:Laravel Jestream how to add external javascript 【发布时间】:2021-07-03 20:14:28 【问题描述】:

我想在 Laravel Jetstream Livewire Alpine 中包含这个 Summernote 富文本编辑器。

我尝试通过使用 @stack() 指令来扩展包含其他 javascript 和 CSS 的可能性,就在 layouts/app.blade.php 文件中:

<!DOCTYPE html>
<html lang=" str_replace('_', '-', app()->getLocale()) ">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="csrf-token" content=" csrf_token() ">

        <title> config('app.name', 'Laravel') </title>

        <!-- Fonts -->
        <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">

        <!-- Styles -->
        <link rel="stylesheet" href=" mix('css/app.css') ">
        @stack('css')

        @livewireStyles

        <!-- Scripts -->
        <script src=" mix('js/app.js') " defer></script>
    </head>
    <body class="font-sans antialiased">
        <x-jet-banner />

        <div class="min-h-screen bg-gray-100">
            @livewire('navigation-menu')

            <!-- Page Heading -->
            @if (isset($header))
                <header class="bg-white shadow">
                    <div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8">
                         $header 
                    </div>
                </header>
            @endif

            <!-- Page Content -->
            <main>
                 $slot 
            </main>
        </div>

        @stack('modals')
        @stack('js')

        @livewireScripts
    </body>
</html>

在我的刀片视图中,我包含了 summernote js 和 css CDN 链接,如下所示:

<x-app-layout>
    <x-slot name="header">
        <h2 class="font-semibold text-xl text-gray-800 leading-tight">
             __('Dashboard') 
        </h2>
    </x-slot>

    <div class="py-12">
        <div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
            <div class="bg-white overflow-hidden shadow-xl sm:rounded-lg">
                <form action=" route('post') " method="post">
                    @csrf
                    <label class="block text-gray-700 text-sm font-bold mb-2" for="fuente">
                        Your text
                    </label>
                    <div id="summernote">
                        <textarea name="fuente" id="fuente" class="w-full px-3 py-2 text-gray-700 border rounded-lg focus:outline-none" rows="4"></textarea>
                    </div>
                    <button type="submit" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 mt-6 border border-blue-700 rounded">
                        Send
                    </button>
                </form>
            </div>
        </div>
    </div>
</x-app-layout>

@push('css')
    <link href="https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote-lite.min.css" rel="stylesheet">
@endpush

@push('js')
    <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote-lite.min.js"></script>
    <script>
        $('#summernote').summernote(
            placeholder: 'Hello stand alone ui',
            tabsize: 2,
            height: 120,
            toolbar: [
                ['style', ['style']],
                ['font', ['bold', 'underline', 'clear']],
                ['color', ['color']],
                ['para', ['ul', 'ol', 'paragraph']],
                ['table', ['table']],
                ['insert', ['link', 'picture', 'video']],
                ['view', ['fullscreen', 'codeview', 'help']]
            ]
        );
    </script>
@endpush

但是,编辑器没有加载。如果我加载刀片视图的源代码,我看不到 Summernote javascript。

我错过了什么?如何让它发挥作用?

【问题讨论】:

你清除缓存了吗? @HassaanAli 是的。我实际上尝试过使用incognito 模式。 Summernote 无论如何都没有加载。 我的意思是 laravel 有它自己的命令来清除缓存。例如php artisan cache:clear @HassaanAli 我也试过了。它没有加载summernote:/ 【参考方案1】:

我的错。

我意识到我必须在&lt;x-app-layout&gt; 标记中包含@stack() 指令。例如,就在&lt;/x-app-layout&gt; 结束之前。

<x-app-layout>
    <x-slot name="header">
        <h2 class="font-semibold text-xl text-gray-800 leading-tight">
             __('Dashboard') 
        </h2>
    </x-slot>

    <div class="py-12">
        <div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
            <div class="bg-white overflow-hidden shadow-xl sm:rounded-lg">
                <form action=" route('post') " method="post">
                    @csrf
                    <label class="block text-gray-700 text-sm font-bold mb-2" for="fuente">
                        Your text
                    </label>
                    <div id="summernote">
                        <textarea name="fuente" id="fuente" class="w-full px-3 py-2 text-gray-700 border rounded-lg focus:outline-none" rows="4"></textarea>
                    </div>
                    <button type="submit" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 mt-6 border border-blue-700 rounded">
                        Send
                    </button>
                </form>
            </div>
        </div>
    </div>

@push('css')
    <link href="https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote-lite.min.css" rel="stylesheet">
@endpush

@push('js')
    <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote-lite.min.js"></script>
    <script>
        $('#summernote').summernote(
            placeholder: 'Hello stand alone ui',
            tabsize: 2,
            height: 120,
            toolbar: [
                ['style', ['style']],
                ['font', ['bold', 'underline', 'clear']],
                ['color', ['color']],
                ['para', ['ul', 'ol', 'paragraph']],
                ['table', ['table']],
                ['insert', ['link', 'picture', 'video']],
                ['view', ['fullscreen', 'codeview', 'help']]
            ]
        );
    </script>
@endpush
</x-app-layout>

最后,解决了它。

【讨论】:

以上是关于Laravel Jetstream 如何添加外部 javascript的主要内容,如果未能解决你的问题,请参考以下文章

使用 Jetstream 在 Laravel 8 中添加新 Livewire 组件时如何解决 RootTagMissingFromViewException 错误

在 Laravel 8 中使用堆栈

在 Laravel Jetstream 注册中添加填充的选择下拉列表

如何使用 laravel 8 +jetstream + spatie 为注册用户分配角色

如何在 Laravel Jetstream 上使用 REST API 管理用户

如何在 laravel jetstream 中重定向?