我正在尝试在表单中添加 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