CKEditor 와 dotnetcore 는 이미지 업로드 기능 을 실현 합 니 다.

본 논문 의 사례 는 CKEditor 와 dotnetcore 가 이미지 업 로드 를 실현 하 는 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
CKEditor 사용
1.js 라 이브 러 리 도입

<script src="https://cdn.ckeditor.com/4.6.1/standard-all/ckeditor.js"></script> 
2.textarea 탭 정의

<textarea id="editor">
 </textarea> 
3.textarea 를 CkEditor 로 교체 하면 기본 기능 을 사용 할 수 있 습 니 다.

CKEDITOR.replace('editor'); 
4.CkEditor 설정
사진 업로드,코드 삽입 도구 추가

CKEDITOR.replace('editor-box', {
   //GitHub  :https://github.com/ckeditor   
   toolbar: [
    { name: 'document', items: ['Source'] },
    { name: 'basicstyles', items: ['Bold', 'Italic'] },
    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote'] },
    { name: 'links', items: ['Link', 'Unlink'] },
    { name: 'insert', items: ['Image','CodeSnippet'] },
    { name: 'styles', items: ['Format', 'Styles'] }
   ],
   filebrowserImageUploadUrl: '/Blogs/UploadImageUrl', //        Url   
   customConfig: '',   
   extraPlugins: 'codesnippet,image2,uploadimage',   
   removePlugins: 'image',   
   //mathJaxLib: 'https://cdn.mathjax.org/mathjax/2.6-latest/MathJax.js?config=TeX-AMS_HTML',  
   codeSnippet_theme: 'ir_black',
   height: 450,   
   contentsCss: ['https://cdn.ckeditor.com/4.6.1/standard-all/contents.css'],   
   format_tags: 'p;h1;h2;h3;pre',   
   removeDialogTabs: 'image:advanced;link:advanced;link:target',  
   stylesSet: [
    /* Inline Styles */
    { name: 'Marker', element: 'span', attributes: { 'class': 'marker' } },
    { name: 'Cited Work', element: 'cite' },
    { name: 'Inline Quotation', element: 'q' },
    /* Object Styles */
    {
     name: 'Special Container',
     element: 'div',
     styles: {
      padding: '5px 10px',
      background: '#eee',
      border: '1px solid #ccc'
     }
    },
    {
     name: 'Compact table',
     element: 'table',
     attributes: {
      cellpadding: '5',
      cellspacing: '0',
      border: '1',
      bordercolor: '#ccc'
     },
     styles: {
      'border-collapse': 'collapse'
     }
    },
    { name: 'Borderless Table', element: 'table', styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } },
    { name: 'Square Bulleted List', element: 'ul', styles: { 'list-style-type': 'square' } },
    /* Widget Styles */
    { name: 'Illustration', type: 'widget', widget: 'image', attributes: { 'class': 'image-illustration' } },
    { name: 'Featured snippet', type: 'widget', widget: 'codeSnippet', attributes: { 'class': 'code-featured' } },
    { name: 'Featured formula', type: 'widget', widget: 'mathjax', attributes: { 'class': 'math-featured' } }
   ]
  });
5.배경 에서 사진 받 기

/// <summary>
  ///     
  /// </summary>
  /// <param name="env"></param>
  /// <returns></returns>
  public async Task<IActionResult> UploadImageUrl([FromServices]IHostingEnvironment env)
  {
   // CKEditor            
   string callback = Request.Query["CKEditorFuncNum"];
   var form = Request.Form;
   var img = form.Files[0]; //    
   string fileName = img.FileName;
   var openReadStream = img.OpenReadStream();
   byte[] buff = new byte[openReadStream.Length];
   await openReadStream.ReadAsync(buff, 0, buff.Length);
   string filenameGuid = Guid.NewGuid().ToString();
   var bowerPath = PathUtils.GetSavePath(filenameGuid, true) + ".jpg";//          ,         
   var savePath = Path.Combine(env.WebRootPath, bowerPath);
   using (FileStream fs = new FileStream(savePath, FileMode.Create))
   {
    await fs.WriteAsync(buff, 0, buff.Length);
    //     JavaScript  
    string result = $"<script type=\"text/javascript\">window.parent.CKEDITOR.tools.callFunction(\"{callback}\", \"{"/"+bowerPath}\", \"\");</script>";
    Response.ContentType = "text/html;charset=UTF-8";
    return Content(result);
   }
  }
 

6.주의
서버 가 되 돌아 오 려 면 이것 을 추가 해 야 합 니 다.그렇지 않 으 면 전단 페이지 에서 되 돌아 오 는 JavaScript 스 크 립 트 를 실행 하지 않 는 문제 가 발생 할 수 있 습 니 다.

Response.ContentType = "text/html;charset=UTF-8";
설정 이 완료 되면 이미지 업로드 기능 을 사용 할 수 있 습 니 다.

 이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기