CKEDITOR错误代码:cloudservices-no-token-url Angular 2

时间:2018-03-24 06:22:11

标签: angular ckeditor

我在ng2-ckeditor项目中使用Angular 5。我下载了离线包并添加了它。一切都工作得很好,但它显示错误我控制台[CKEDITOR] Error code: cloudservices-no-token-url.我试图通过在config文件中添加它作为额外的插件来解决它。它也可以在build-config中找到,但仍无法解决 有什么建议吗?

3 个答案:

答案 0 :(得分:1)

您应该删除插件。

CKEDITOR.editorConfig = function( config ) {
:
:
:
   config.removePlugins = 'easyimage, cloudservices';

};

答案 1 :(得分:0)

CloudServices需要在ckeditor配置文件或javascript中指定上传网址和令牌网址,以删除此错误消息。

CKEDITOR.replace( 'editor', {
    extraPlugins: 'easyimage',
    cloudServices_tokenUrl: 'https://example.com/cs-token-endpoint',
    cloudServices_uploadUrl: 'https://your-organization-id.cke-cs.com/easyimage/upload/'
    } );

答案 2 :(得分:0)

您可以查看:

CKEDITOR.replace( 'editor', {
    extraPlugins: 'easyimage',
    cloudServices_tokenUrl: 'https://example.com/cs-token-endpoint',
    cloudServices_uploadUrl: 'https://your-organization-id.cke-cs.com/easyimage/upload/'
} );

默认为''

https://docs.ckeditor.com/ckeditor4/latest/api/CKEDITOR_config.html#cfg-cloudServices_tokenUrl