0

我正在尝试在表单中添加 trix 编辑器。它出现了,但工具栏被禁用,它不起作用。经过一些研究,我发现它在我的布局文件的标题中,所以我将它移到了正文的末尾并删除了“延迟”,现在 trix 编辑器消失了。

布局文件

<!-- Scripts -->
<script src="{{ asset('js/app.js') }}"></script>   
 @yield('scripts')
</body>
</html>

我想要 trix 编辑器的字段

<div class="form-group">
   <label for="content">Content</label>
   <input id="content" type="hidden" name="content">
   <trix-editor input="content"></trix-editor>
</div>

特里克斯 js 和 css

@section('scripts')
<script src="https://cdnjs.cloudflare.com/ajax/libs/trix/1.1.1/trix.js"></script>
@endsection

@section('css')
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/trix/1.1.1/trix.css">
@endsection
4

3 回答 3

0

--> 作曲家需要 te7a-houdini/laravel-trix

--> php artisan vendor:publish --provider="Te7aHoudini\LaravelTrix\LaravelTrixServiceProvider"

--> php 工匠迁移

在您的页面中使用

<html>
    <head>
        @trixassets
    </head>

    <body>
        <form method="POST" action="route('article.store')">
            @csrf
            @trix(\App\Article::class, 'content')
            <input type="submit">
        </form>    
    </body>
</html>
于 2019-11-28T09:53:27.853 回答
0

您在 中提到的 trix 代码的 js 链接section('scripts'),而不是包含在“脚本”部分中。直接将链接粘贴到 html 的主要 HEAD 部分,可能是它在 layouts.app 中。

或者你也可以做同样的事情,只是改变一些代码,如下所示:

  1. 在您的 html, head 部分中,添加 yield 就像@YIELD('CSCRIPTS')其他提到的 SCRIPT 标记一样,确保您在 yield 中使用新名称。
  2. 在 html 的 head 部分中,您还会看到其他 SCRIPT 标记,如果存在则删除 DEFER。
  3. 最后,转到您的 SECTION 所属的刀片并将其更改为@SECTION('CSCRIPTS').
  4. 效果很好。

但是你也会看到另一个脚本标签,在那里并删除 DEFER 关键字。其他保持不变,完美运行

于 2019-11-09T09:50:59.843 回答
0

在这里,我制作了演示 trix 编辑器,它在 laravel 5.8.14 v 中运行良好

<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Laravel</title>
        <link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/trix/1.1.1/trix.css">
        <style>
            html, body {
                background-color: #fff;
                color: #636b6f;
                font-family: 'Nunito', sans-serif;
                font-weight: 200;
                height: 100vh;
                margin: 0;
            }

            .full-height {
                height: 100vh;
            }

            .flex-center {
                align-items: center;
                display: flex;
                justify-content: center;
            }

            .position-ref {
                position: relative;
            }

            .top-right {
                position: absolute;
                right: 10px;
                top: 18px;
            }

            .content {
                text-align: center;
            }

            .title {
                font-size: 84px;
            }

            .links > a {
                color: #636b6f;
                padding: 0 25px;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: .1rem;
                text-decoration: none;
                text-transform: uppercase;
            }

            .m-b-md {
                margin-bottom: 30px;
            }
        </style>
    </head>
    <body>
        <div class="flex-center position-ref full-height">
            @if (Route::has('login'))
                <div class="top-right links">
                    @auth
                        <a href="{{ url('/home') }}">Home</a>
                    @else
                        <a href="{{ route('login') }}">Login</a>

                        @if (Route::has('register'))
                            <a href="{{ route('register') }}">Register</a>
                        @endif
                    @endauth
                </div>
            @endif

            <div class="content">
                <div class="title m-b-md">
                    Laravel
                </div>
                 <trix-editor input="content"></trix-editor>
            </div>
        </div>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js" type="text/javascript"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/trix/1.1.1/trix.js"></script>
    </body>
</html>

你忘了添加 jquery 吗?

截图

于 2019-04-25T11:22:31.557 回答