var editor = CKEDITOR.replace( 'editor1', { extraPlugins: 'uploadimage,filetools', imageUploadUrl: 'http://sub.ckeditor.dev/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images&responseType=json' } );
editor.on( 'fileUploadRequest', function( e ) { var xhr = e.data.fileLoader.xhr; xhr.withCredentials = true; } );
转载于:https://www.cnblogs.com/tengrl/p/10482742.html