Laravel 5.7-使用命令'php artisan make:auth'后,Ckeditor停止显示

时间:2018-08-27 13:53:16

标签: php laravel authentication ckeditor artisan

使用命令之前

php artisan make:auth

ckeditor,来自网站https://github.com/UniSharp/laravel-ckeditor

工作正常。

使用该命令后,ckeditor代码已在文件app.blade.php中消失。在这种情况下,代码

<script src="/vendor/unisharp/laravel-ckeditor/ckeditor.js"></script>
<script>
    CKEDITOR.replace( 'article-ckeditor' );
</script>

再次放置在app.blade.php中,并再次在终端中使用以下命令:

composer require unisharp/laravel-ckeditor
php artisan vendor:publish --tag=ckeditor

此外,在addservice提供商中的config / app.php中仍然是:

Unisharp\Ckeditor\ServiceProvider::class,

我正在通过youtube上的遍历媒体频道进行教程,其链接为以下laravel from scratch

我的问题是,我还需要在Laravel中写下什么,使CKeditor可见。

1 个答案:

答案 0 :(得分:3)

您做对了所有事情, 但运行此命令后

php artisan make:auth

新创建的app.blade.php行中包含“ defer”

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

因此删除“延迟”,就像

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

这将起作用。

您也可以将其移动到</body>标签之前。