我目前正在尝试将ckeditor集成到我的laravel blog
中,并且我不想添加image plugin
,因为我需要能够上传图片。我正在使用cdn of ckeditor
。过去我曾在这里看到过类似的问题,我尝试过所有的解决方案,但它们对我不起作用。
问题:当我单击工具栏中的图像按钮时,将弹出标准图像窗口,而不是图像插件。
我已将图像插件代码本地添加到我的项目中:
Path to plugin: public/ckeditor/image
如您在堆栈溢出建议的代码中所见,我在插件路径中添加了addExternal function
,并在其末尾添加了/
,并在ckeditor配置中使用了extraPlugin attribute
。
谢谢。
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="https://cdn.ckeditor.com/4.11.1/standard-all/ckeditor.js"></script>
<div class="row pb-lg-5">
<div class="col-10 offset-1 col-lg-8 offset-lg-2">
<textarea cols="80" id="ckEditor" name="ckEditor" rows="10"></textarea>
</div>
</div>
<script>
CKEDITOR.plugins.addExternal('image', '/public/ckEditor/image/', 'plugin.js');
CKEDITOR.replace('ckEditor', {
height: 400,
extraPlugins: 'image'
});
</script>