आप CKEditor के साथ कस्टम फ़ाइल ब्राउज़र / अपलोडर को कैसे एकीकृत कर सकते हैं?


112

आधिकारिक दस्तावेज स्पष्ट से कम है - CKEditor के साथ कस्टम फ़ाइल ब्राउज़र / अपलोडर को एकीकृत करने का सही तरीका क्या है? (v3 - FCKEditor नहीं)

जवाबों:


175

अपने कस्टम ब्राउज़र / अपलोडर को पंजीकृत करने से शुरू करें जब आप CKEditor को तुरंत करते हैं। आप एक छवि ब्राउज़र बनाम एक सामान्य फ़ाइल ब्राउज़र के लिए अलग URL निर्दिष्ट कर सकते हैं।

<script type="text/javascript">
CKEDITOR.replace('content', {
    filebrowserBrowseUrl : '/browser/browse/type/all',
    filebrowserUploadUrl : '/browser/upload/type/all',
    filebrowserImageBrowseUrl : '/browser/browse/type/image',
filebrowserImageUploadUrl : '/browser/upload/type/image',
    filebrowserWindowWidth  : 800,
    filebrowserWindowHeight : 500
});
</script>

आपके कस्टम कोड को एक GET पैरामीटर प्राप्त होगा जिसे CKEditorFuncNum कहा जाता है। इसे सहेजें - यह आपका कॉलबैक फ़ंक्शन है। मान लीजिए कि आप इसे डालते हैं$callback

जब कोई फ़ाइल का चयन करता है, तो CKEditor को सूचित करने के लिए इस जावास्क्रिप्ट को चलाएं कि कौन सी फ़ाइल चयनित थी:

window.opener.CKEDITOR.tools.callFunction(<?php echo $callback; ?>,url)

जहाँ "url" उस फ़ाइल का URL है जिसे उन्होंने उठाया था। एक वैकल्पिक तीसरा पैरामीटर वह टेक्स्ट हो सकता है जिसे आप मानक अलर्ट संवाद में प्रदर्शित करना चाहते हैं, जैसे "अवैध फ़ाइल" या कुछ और। यदि तीसरा पैरामीटर एक त्रुटि संदेश है, तो खाली स्ट्रिंग पर url सेट करें।

CKEditor का "अपलोड" टैब PHP में फ़ील्ड "अपलोड" में एक फ़ाइल सबमिट करेगा - जो $ _FILES ['अपलोड'] में जाता है। CKEditor क्या चाहता है कि आपका सर्वर आउटपुट के लिए एक पूर्ण जावास्क्रिप्ट ब्लॉक हो:

$output = '<html><body><script type="text/javascript">window.parent.CKEDITOR.tools.callFunction('.$callback.', "'.$url.'","'.$msg.'");</script></body></html>';
echo $output;

फिर, आपको इसे कॉलबैक पैरामीटर, फ़ाइल का URL और वैकल्पिक रूप से एक संदेश देना होगा। यदि संदेश एक रिक्त स्ट्रिंग है, तो कुछ भी प्रदर्शित नहीं होगा; यदि संदेश एक त्रुटि है, तो url एक रिक्त स्ट्रिंग होनी चाहिए।

आधिकारिक CKEditor प्रलेखन इस सब पर अधूरा है, लेकिन यदि आप ऊपर का पालन करते हैं तो यह एक विजेता की तरह काम करेगा।


29
मैं विश्वास नहीं कर सकता कि इस प्रक्रिया के लिए डेवलपर प्रलेखन बहुत विरल है। विवरण भरने के लिए धन्यवाद।

4
यह बहुत अच्छी जानकारी थी! आधिकारिक दस्तावेज की तुलना में बेहतर है।
जॉन रोमेरो

2
आपका बहुत बहुत धन्यवाद! लेकिन यह CKEditorFunNum है, ना कि नाम = P
emzero

2
@emzero, मुझे लगता है कि यह शायद CKEditorFuncName था, शायद CKEditorFuncNum का अधिक CKEditor उपयोग करता है। वैसे भी जवाब हाजिर है!
रोजी कासिम

1
इसके अलावा, यदि आपको "अपलोड टैब" को छिपाने की आवश्यकता है ताकि आप केवल उस छवि अपलोड को अनुमति दें जिसे आप उपयोग कर सकें: CKEDITOR.on ('dialogDefinition', function (ev) {// संवाद नाम और उसकी परिभाषा को घटना से लें / / data। var dialogName = ev.data.name; var DialDefinition = ev.data.definition; // जाँच करें कि क्या परिभाषा उस डायलॉग से है जिसे हम // लिंक (छवि और लिंक) पर रुचि रखते हैं। = 'लिंक' || डायलॉगनाम == 'छवि') {// अपलोड टैब डायलॉग हटाएं। चर्चाएं करें। संदेश ('अपलोड');}});
कृतिजन

14

मैंने पुराने एफसीकेडिटर में उपलब्ध फाइलब्रोसर को CKEditor में एकीकृत करने के बारे में एक छोटा ट्यूटोरियल पोस्ट किया है।

http://www.mixedwaves.com/2010/02/integrating-fckeditor-filemanager-in-ckeditor/

यह ऐसा करने के लिए कदम से कदम निर्देश और इसके बहुत सरल है। मुझे आशा है कि इसकी खोज में कोई भी इस ट्यूटोरियल को मददगार मिलेगा।


10

मैं बस खुद सीखने की प्रक्रिया से गुजरा। मुझे यह समझ में आया, लेकिन मैं मानता हूं कि दस्तावेज़ीकरण इस तरह से लिखा गया है जो मुझे बहुत डराने वाला था। मेरे लिए बड़ा "अहा" पल यह समझ रहा था कि ब्राउज़िंग के लिए, सभी CKeditor करता है एक नई विंडो खोलें और url में कुछ पैरामीटर प्रदान करें। यह आपको अतिरिक्त मापदंडों को जोड़ने की अनुमति देता है, लेकिन आपको अपने मूल्यों पर एन्कोडर्कोम्पोनेंट () का उपयोग करने की आवश्यकता होगी।

मैं ब्राउज़र और अपलोडर को कॉल करता हूं

CKEDITOR.replace( 'body',  
{  
    filebrowserBrowseUrl: 'browse.php?type=Images&dir=' +  
        encodeURIComponent('content/images'),  
    filebrowserUploadUrl: 'upload.php?type=Files&dir=' +  
        encodeURIComponent('content/images')  
}

के लिए ब्राउज़र , खुली खिड़की (browse.php) आप अपने onclick आपूर्ति हैंडलर पर तो php और जे एस का उपयोग विकल्पों की एक सूची की आपूर्ति करने और में, आप दो तर्क, यूआरएल / पथ के साथ एक CKeditor समारोह चयनित छवि के लिए कॉल और CKditorFuncNum url में CKeditor द्वारा आपूर्ति की गई:

function myOnclickHandler(){  
//..    
    window.opener.CKEDITOR.tools.callFunction(<?php echo $_GET['CKEditorFuncNum']; ?>, pathToImage);  
    window.close();
}       

सिमरली, अपलोडर केवल आपके द्वारा आपूर्ति किए गए url को कॉल करता है, जैसे, upload.php , और फिर से $ _GET ['CKEditorFuncNum'] की आपूर्ति करता है। लक्ष्य एक iframe है, इसलिए जब आप फ़ाइल को $ _FILES से सहेजते हैं, तो आप CKeditor को अपना फ़ीडबैक पास करते हैं:

$funcNum = $_GET['CKEditorFuncNum'];  
exit("<script>window.parent.CKEDITOR.tools.callFunction($funcNum, '$filePath', '$errorMessage');</script>");  

नीचे कस्टम ब्राउज़र स्क्रिप्ट समझने के लिए एक सरल है। हालांकि यह उपयोगकर्ताओं को सर्वर में इधर-उधर जाने की अनुमति नहीं देता है, यह आपको ब्राउज़र को कॉल करते समय छवि फ़ाइलों को खींचने के लिए किस निर्देशिका को इंगित करने की अनुमति देता है।

यह सभी बुनियादी कोडिंग है, इसलिए इसे सभी अपेक्षाकृत आधुनिक ब्राउज़रों में काम करना चाहिए।

CKeditor केवल प्रदान की गई url के साथ एक नई विंडो खोलता है

/*          
    in CKeditor **use encodeURIComponent()** to add dir param to the filebrowserBrowseUrl property

    Replace content/images with directory where your images are housed.
*/          
        CKEDITOR.replace( 'editor1', {  
            filebrowserBrowseUrl: '**browse.php**?type=Images&dir=' + encodeURIComponent('content/images'),  
            filebrowserUploadUrl: 'upload.php?type=Files&dir=' + encodeURIComponent('content/images') 
        });   

// ========= ब्राउज़ के लिए नीचे पूरा कोड। एफपी

<?php  
header("Content-Type: text/html; charset=utf-8\n");  
header("Cache-Control: no-cache, must-revalidate\n");  
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");  

// e-z params  
$dim = 150;         /* image displays proportionally within this square dimension ) */  
$cols = 4;          /* thumbnails per row */
$thumIndicator = '_th'; /* e.g., *image123_th.jpg*) -> if not using thumbNails then use empty string */  
?>  
<!DOCTYPE html>  
<html>  
<head>  
    <title>browse file</title>  
    <meta charset="utf-8">  

    <style>  
        html,  
        body {padding:0; margin:0; background:black; }  
        table {width:100%; border-spacing:15px; }  
        td {text-align:center; padding:5px; background:#181818; }  
        img {border:5px solid #303030; padding:0; verticle-align: middle;}  
        img:hover { border-color:blue; cursor:pointer; }  
    </style>  

</head>  


<body>  

<table>  

<?php  

$dir = $_GET['dir'];    

$dir = rtrim($dir, '/'); // the script will add the ending slash when appropriate  

$files = scandir($dir);  

$images = array();  

foreach($files as $file){  
    // filter for thumbNail image files (use an empty string for $thumIndicator if not using thumbnails )
    if( !preg_match('/'. $thumIndicator .'\.(jpg|jpeg|png|gif)$/i', $file) )  
        continue;  

    $thumbSrc = $dir . '/' . $file;  
    $fileBaseName = str_replace('_th.','.',$file);  

    $image_info = getimagesize($thumbSrc);  
    $_w = $image_info[0];  
    $_h = $image_info[1]; 

    if( $_w > $_h ) {       // $a is the longer side and $b is the shorter side
        $a = $_w;  
        $b = $_h;  
    } else {  
        $a = $_h;  
        $b = $_w;  
    }     

    $pct = $b / $a;     // the shorter sides relationship to the longer side

    if( $a > $dim )   
        $a = $dim;      // limit the longer side to the dimension specified

    $b = (int)($a * $pct);  // calculate the shorter side

    $width =    $_w > $_h ? $a : $b;  
    $height =   $_w > $_h ? $b : $a;  

    // produce an image tag
    $str = sprintf('<img src="%s" width="%d" height="%d" title="%s" alt="">',   
        $thumbSrc,  
        $width,  
        $height,  
        $fileBaseName  
    );  

    // save image tags in an array
    $images[] = str_replace("'", "\\'", $str); // an unescaped apostrophe would break js  

}

$numRows = floor( count($images) / $cols );  

// if there are any images left over then add another row
if( count($images) % $cols != 0 )  
    $numRows++;  


// produce the correct number of table rows with empty cells
for($i=0; $i<$numRows; $i++)   
    echo "\t<tr>" . implode('', array_fill(0, $cols, '<td></td>')) . "</tr>\n\n";  

?>  
</table>  


<script>  

// make a js array from the php array
images = [  
<?php   

foreach( $images as $v)  
    echo sprintf("\t'%s',\n", $v);  

?>];  

tbl = document.getElementsByTagName('table')[0];  

td = tbl.getElementsByTagName('td');  

// fill the empty table cells with data
for(var i=0; i < images.length; i++)  
    td[i].innerHTML = images[i];  


// event handler to place clicked image into CKeditor
tbl.onclick =   

    function(e) {  

        var tgt = e.target || event.srcElement,  
            url;  

        if( tgt.nodeName != 'IMG' )  
            return;  

        url = '<?php echo $dir;?>' + '/' + tgt.title;  

        this.onclick = null;  

        window.opener.CKEDITOR.tools.callFunction(<?php echo $_GET['CKEditorFuncNum']; ?>, url);  

        window.close();  
    }  
</script>  
</body>  
</html>            

9

मैंने यह जानने की कोशिश में कुछ समय बिताया और यहां मैंने वही किया है। मैंने इसे बहुत सरलता से तोड़ दिया है जैसा कि मुझे चाहिए था।

सीधे अपने ckeditor पाठ क्षेत्र के नीचे, इस तरह अपलोड फ़ाइल दर्ज करें >>>>

<form action="welcomeeditupload.asp" method="post" name="deletechecked">
    <div align="center">
        <br />
        <br />
        <label></label>
        <textarea class="ckeditor" cols="80" id="editor1" name="editor1" rows="10"><%=(rslegschedule.Fields.Item("welcomevar").Value)%></textarea>
        <script type="text/javascript">
        //<![CDATA[
            CKEDITOR.replace( 'editor1',
            {
                filebrowserUploadUrl : 'updateimagedone.asp'
            });
        //]]>
        </script>
        <br />
        <br />
        <br />
        <input type="submit" value="Update">
    </div>
</form>

'और फिर अपनी अपलोड फ़ाइल जोड़ें, यहाँ मेरा है जो एएसपी में लिखा गया है। यदि आप PHP आदि का उपयोग कर रहे हैं, तो बस एएसपी को अपनी अपलोड स्क्रिप्ट से बदल दें, लेकिन सुनिश्चित करें कि पृष्ठ उसी चीज़ का आउटपुट देता है।

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
    if Request("CKEditorFuncNum")=1 then
        Set Upload = Server.CreateObject("Persits.Upload")
        Upload.OverwriteFiles = False
        Upload.SetMaxSize 5000000, True
        Upload.CodePage = 65001

        On Error Resume Next
        Upload.Save "d:\hosting\belaullach\senate\legislation"

        Dim picture
        For Each File in Upload.Files
            Ext = UCase(Right(File.Path, 3))
            If Ext <> "JPG" Then
                    If Ext <> "BMP" Then
                    Response.Write "File " & File.Path & " is not a .jpg or .bmp file." & "<BR>"
                    Response.write "You can only upload .jpg or .bmp files." & "<BR>" & "<BR>"
                    End if
            Else
                File.SaveAs Server.MapPath(("/senate/legislation") & "/" & File.fileName)
                f1=File.fileName
            End If
        Next
    End if

    fnm="/senate/legislation/"&f1
    imgop = "<html><body><script type=""text/javascript"">window.parent.CKEDITOR.tools.callFunction('1','"&fnm&"');</script></body></html>;"
    'imgop="callFunction('1','"&fnm&"',"");"
    Response.write imgop
%>

8

यह वह तरीका है जिसका मैंने उपयोग किया है। यह काफी सीधा है, और ठीक काम करता है।

सीके संपादक रूट डायरेक्टरी में config.js नाम की एक फाइल है

मैंने इसे जोड़ा (आपको क्वेरिस्ट्रिंग सामान की आवश्यकता नहीं है, यह सिर्फ हमारे फाइल मैनेजर के लिए है)। मैंने कुछ स्किनिंग और दिखाए गए डिफ़ॉल्ट बटन को बदलना भी शामिल किया है:

CKEDITOR.editorConfig = function(config) {

    config.skin = 'v2';
    config.startupFocus = false;
    config.filebrowserBrowseUrl = '/admin/content/filemanager.aspx?path=Userfiles/File&editor=FCK';
    config.filebrowserImageBrowseUrl = '/admin/content/filemanager.aspx?type=Image&path=Userfiles/Image&editor=FCK';
    config.toolbar_Full =
    [
        ['Source', '-', 'Preview', '-'],
        ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Print', 'SpellChecker'], //, 'Scayt' 
        ['Undo', 'Redo', '-', 'Find', 'Replace', '-', 'SelectAll', 'RemoveFormat'],
        '/',
        ['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript'],
        ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'],
        ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
        ['Link', 'Unlink', 'Anchor'],
        ['Image', 'Flash', 'Table', 'HorizontalRule', 'SpecialChar'],
        '/',
        ['Styles', 'Format', 'Templates'],
        ['Maximize', 'ShowBlocks']
    ];

};

फिर, हमारे फ़ाइल प्रबंधक ने यह कहा:

opener.SetUrl('somefilename');

7

CKEditor 3.0 में कस्टम फ़ाइलब्रोसर कॉलबैक के लिए ज़ीरोकस्पॉट पर एक लेख इसे संभालता है। सबसे अधिक प्रासंगिक अनुभाग नीचे उद्धृत किया गया है:

तो आप सभी को फ़ाइल ब्राउज़र से करना होगा जब आपके पास कोई फ़ाइल चयनित होती है तो इस कोड को सही कॉलबैक नंबर (सामान्य रूप से 1) और चयनित फ़ाइल के URL के साथ कॉल करना है:

window.opener.CKEDITOR.tools.callFunction(CKEditorFuncNum,url);

त्वरित-अपलोडर के लिए प्रक्रिया काफी समान है। पहले तो मैंने सोचा था कि संपादक 200 HTTP रिटर्न कोड के लिए सुन रहा होगा और शायद कुछ हेडर फ़ील्ड या कुछ ऐसा देखेगा जो अपलोड की गई फ़ाइल का स्थान निर्धारित करेगा, लेकिन फिर - कुछ फायरबग निगरानी के माध्यम से - मैंने देखा कि यह सब होता है अपलोड के बाद निम्न कोड है:

<script type="text/javascript">
window.parent.CKEDITOR.tools.callFunction(CKEditorFuncNum,url, errorMessage); </script>

यदि अपलोड विफल हो गया, तो errorMessageकुछ गैर-शून्य-लंबाई स्ट्रिंग पर सेट करें और url खाली करें, और सफलता पर इसके विपरीत।



1
जितना मैं सराहना करता हूं कि आपने मेरे ब्लॉग को देखा, क्लॉप्स, आप कम से कम इसे वापस लिंक कर सकते थे या सिर्फ मेरे ब्लॉग पोस्ट को कॉपी / पेस्ट करने के बजाय इसे सभी से लिंक कर सकते थे।
होर्स्ट गुटमैन

1
@Jon & @ हॉर्स्ट: इसे इंगित करने के लिए धन्यवाद अगर मैं किसी भी प्रासंगिक को काट देता हूं, जिसे वापस करने की आवश्यकता है, तो मुझे बताएं।
छिपकली

4

अपने कस्टम ब्राउज़र / अपलोडर को पंजीकृत करने से शुरू करें जब आप CKEditor को तुरंत करते हैं।

<script type="text/javascript">
CKEDITOR.replace('content', {
    filebrowserUploadUrl: "Upload File Url",//http://localhost/phpwork/test/ckFileUpload.php
    filebrowserWindowWidth  : 800,
    filebrowserWindowHeight : 500
});
</script>

अपलोड फ़ाइल के लिए कोड (ckFileUpload.php) और अपलोड फ़ाइल को अपनी परियोजना के रूट dir पर रखें।

// HERE SET THE PATH TO THE FOLDERS FOR IMAGES AND AUDIO ON YOUR SERVER (RELATIVE TO THE ROOT OF YOUR WEBSITE ON SERVER)

$upload_dir = array(
 'img'=> '/phpwork/test/uploads/editor-images/',
 'audio'=> '/phpwork/ezcore_v1/uploads/editor-images/'
);

// HERE PERMISSIONS FOR IMAGE
$imgset = array(
 'maxsize' => 2000,     // maximum file size, in KiloBytes (2 MB)
 'maxwidth' => 900,     // maximum allowed width, in pixels
 'maxheight' => 800,    // maximum allowed height, in pixels
 'minwidth' => 10,      // minimum allowed width, in pixels
 'minheight' => 10,     // minimum allowed height, in pixels
 'type' => array('bmp', 'gif', 'jpg', 'jpeg', 'png'),  // allowed extensions
);

// HERE PERMISSIONS FOR AUDIO
$audioset = array(
 'maxsize' => 20000,    // maximum file size, in KiloBytes (20 MB)
 'type' => array('mp3', 'ogg', 'wav'),  // allowed extensions
);

// If 1 and filename exists, RENAME file, adding "_NR" to the end of filename (name_1.ext, name_2.ext, ..)
// If 0, will OVERWRITE the existing file
define('RENAME_F', 1);

$re = '';
if(isset($_FILES['upload']) && strlen($_FILES['upload']['name']) >1) {
  define('F_NAME', preg_replace('/\.(.+?)$/i', '', basename($_FILES['upload']['name'])));  //get filename without extension

  // get protocol and host name to send the absolute image path to CKEditor
  $protocol = !empty($_SERVER['HTTPS']) ? 'https://' : 'http://';
  $site = $protocol. $_SERVER['SERVER_NAME'] .'/';
  $sepext = explode('.', strtolower($_FILES['upload']['name']));
  $type = end($sepext);    // gets extension
  $upload_dir = in_array($type, $imgset['type']) ? $upload_dir['img'] : $upload_dir['audio'];
  $upload_dir = trim($upload_dir, '/') .'/';

  //checkings for image or audio
  if(in_array($type, $imgset['type'])){
    list($width, $height) = getimagesize($_FILES['upload']['tmp_name']);  // image width and height
    if(isset($width) && isset($height)) {
      if($width > $imgset['maxwidth'] || $height > $imgset['maxheight']) $re .= '\\n Width x Height = '. $width .' x '. $height .' \\n The maximum Width x Height must be: '. $imgset['maxwidth']. ' x '. $imgset['maxheight'];
      if($width < $imgset['minwidth'] || $height < $imgset['minheight']) $re .= '\\n Width x Height = '. $width .' x '. $height .'\\n The minimum Width x Height must be: '. $imgset['minwidth']. ' x '. $imgset['minheight'];
      if($_FILES['upload']['size'] > $imgset['maxsize']*1000) $re .= '\\n Maximum file size must be: '. $imgset['maxsize']. ' KB.';
    }
  }
  else if(in_array($type, $audioset['type'])){
    if($_FILES['upload']['size'] > $audioset['maxsize']*1000) $re .= '\\n Maximum file size must be: '. $audioset['maxsize']. ' KB.';
  }
  else $re .= 'The file: '. $_FILES['upload']['name']. ' has not the allowed extension type.';

  //set filename; if file exists, and RENAME_F is 1, set "img_name_I"
  // $p = dir-path, $fn=filename to check, $ex=extension $i=index to rename
  function setFName($p, $fn, $ex, $i){
    if(RENAME_F ==1 && file_exists($p .$fn .$ex)) return setFName($p, F_NAME .'_'. ($i +1), $ex, ($i +1));
    else return $fn .$ex;
  }

  $f_name = setFName($_SERVER['DOCUMENT_ROOT'] .'/'. $upload_dir, F_NAME, ".$type", 0);
  $uploadpath = $_SERVER['DOCUMENT_ROOT'] .'/'. $upload_dir . $f_name;  // full file path

  // If no errors, upload the image, else, output the errors
  if($re == '') {
    if(move_uploaded_file($_FILES['upload']['tmp_name'], $uploadpath)) {
      $CKEditorFuncNum = $_GET['CKEditorFuncNum'];
      $url = $site. $upload_dir . $f_name;
      $msg = F_NAME .'.'. $type .' successfully uploaded: \\n- Size: '. number_format($_FILES['upload']['size']/1024, 2, '.', '') .' KB';
      $re = in_array($type, $imgset['type']) ? "window.parent.CKEDITOR.tools.callFunction($CKEditorFuncNum, '$url', '$msg')"  //for img
       : 'var cke_ob = window.parent.CKEDITOR; for(var ckid in cke_ob.instances) { if(cke_ob.instances[ckid].focusManager.hasFocus) break;} cke_ob.instances[ckid].insertHtml(\'<audio src="'. $url .'" controls></audio>\', \'unfiltered_html\'); alert("'. $msg .'"); var dialog = cke_ob.dialog.getCurrent();  dialog.hide();';
    }
    else $re = 'alert("Unable to upload the file")';
  }
  else $re = 'alert("'. $re .'")';
}

@header('Content-type: text/html; charset=utf-8');
echo '<script>'. $re .';</script>';

कस्टम फ़ाइल अपलोड के लिए आर एंड डी का एक बहुत कुछ करने के बाद सीके-एडिटर प्रलेखन स्पष्ट नहीं है, आखिरकार मुझे यह समाधान मिल गया है। यह मेरे लिए काम करता है और मुझे उम्मीद है कि यह दूसरों के लिए भी उपयोगी होगा।


1

यहाँ एक सर्वलेट / जेएसपी कार्यान्वयन के बारे में सोच रहे लोगों के लिए कि आप इसे कैसे करते हैं ... मैं नीचे भी अपलोड करने के बारे में बता रहा हूँ।

1) सबसे पहले सुनिश्चित करें कि आपने filebrowser और uploadimage वैरिएबल को अपने config.js फ़ाइल में जोड़ा है । आप भी अपलोड करें और filebrowser करें प्लगइन्स फ़ोल्डर के अंदर फ़ोल्डर है।

2) यह हिस्सा वह है जहाँ इसने मुझे उलझा दिया:

Ckeditor वेबसाइट प्रलेखन का कहना है कि आपको इन दो विधियों का उपयोग करने की आवश्यकता है:

function getUrlParam( paramName ) {
    var reParam = new RegExp( '(?:[\?&]|&)' + paramName + '=([^&]+)', 'i' );
    var match = window.location.search.match( reParam );
    return ( match && match.length > 1 ) ? match[1] : null;
}
function returnFileUrl() {
    var funcNum = getUrlParam( 'CKEditorFuncNum' );
    var fileUrl = 'https://patiliyo.com/wp-content/uploads/2017/07/ruyada-kedi-gormek.jpg';
    window.opener.CKEDITOR.tools.callFunction( funcNum, fileUrl );
    window.close();
}

वे जो उल्लेख नहीं करते हैं वह यह है कि इन तरीकों को एक अलग पृष्ठ पर होना चाहिए, न कि उस पृष्ठ पर जहां से आप ब्राउज़ सर्वर बटन पर क्लिक कर रहे हैं ।

इसलिए यदि आपने पृष्ठ editor.jsp में आरंभिक ckeditor किया है, तो आपको पेज filebrowser.jsp में फ़ाइल ब्राउज़र (बेसिक html / css / जावास्क्रिप्ट के साथ) बनाने की आवश्यकता है ।

Editor.jsp (आपको अपनी स्क्रिप्ट टैग में इसकी आवश्यकता है) यह पृष्ठ ब्राउज़ सर्वर बटन पर क्लिक करने पर एक मिनी विंडो में filebrowser.jsp खोलेगा।

CKEDITOR.replace( 'editor', {
    filebrowserBrowseUrl: '../filebrowser.jsp', //jsp page with jquery to call servlet and get image files to view
    filebrowserUploadUrl: '../UploadImage', //servlet

});

filebrowser.jsp (आपके द्वारा बनाई गई कस्टम फ़ाइल ब्राउज़र है जिसमें ऊपर बताए गए तरीके होंगे)

<head>
<script src="../../ckeditor/ckeditor.js"></script>
</head>
<body>
<script>


function getUrlParam( paramName ) {
    var reParam = new RegExp( '(?:[\?&]|&)' + paramName + '=([^&]+)', 'i' );
    var match = window.location.search.match( reParam );
    return ( match && match.length > 1 ) ? match[1] : null;
}

function returnFileUrl() {
    var funcNum = getUrlParam( 'CKEditorFuncNum' );
var fileUrl = 'https://patiliyo.com/wp-content/uploads/2017/07/ruyada-kedi-gormek.jpg';
    window.opener.CKEDITOR.tools.callFunction( funcNum, fileUrl );
    window.close();
}


//when this window opens it will load all the images which you send from the FileBrowser Servlet. 
getImages();
function getImages(){
    $.get("../FileBrowser", function(responseJson) {    
        //do something with responseJson (like create <img> tags and update the src attributes) 
    });
}

   //you call this function and pass 'fileUrl' when user clicks on an image that you loaded into this window from a servlet
returnFileUrl();
</script>
</body>

3) FileBrowser सर्वलेट

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    Images i = new Images();
    List<ImageObject> images = i.getImages(); //get images from your database or some cloud service or whatever (easier if they are in a url ready format)
    String json = new Gson().toJson(images);
    response.setContentType("application/json");
    response.setCharacterEncoding("UTF-8");
    response.getWriter().write(json);
}

4) UploadImage सर्वलेट

Ckeditor के लिए अपने config.js फ़ाइल पर वापस जाएँ और निम्न पंक्ति जोड़ें:

//https://docs.ckeditor.com/ckeditor4/latest/guide/dev_file_upload.html
config.uploadUrl = '/UploadImage';

फिर आप फ़ाइलों को भी खींच कर छोड़ सकते हैं:

   protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {


                Images i = new Images();

   //do whatever you usually do to upload your image to your server (in my case i uploaded to google cloud storage and saved the url in a database. 

   //Now this part is important. You need to return the response in json format. And it has to look like this:

//      https://docs.ckeditor.com/ckeditor4/latest/guide/dev_file_upload.html
//      response must be in this format:
//      {
//          "uploaded": 1,
//          "fileName": "example.png",
//          "url": "https://www.cats.com/example.png"
//      }

                    String image = "https://www.cats.com/example.png";
                        ImageObject objResponse = i.getCkEditorObjectResponse(image);
                        String json = new Gson().toJson(objResponse);
                        response.setContentType("application/json");
                        response.setCharacterEncoding("UTF-8");
                        response.getWriter().write(json);
                    }
                }

और वह सब लोग हैं। आशा है कि यह किसी की मदद करता है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.