首页 > 解决方案 > 请告诉我如何上传 Summernote 的文字图片

问题描述

前端使用 angular 6,api 使用 asp.net core。当您将图像添加到正文时,它会要求 api 将文件保存在服务器上。顺便说一句,保存数据时,它被保存为base64字节。数据库应使用 Oracle 存储在 4000 字节以下。有没有办法通过图片路径上传图片?希望大家能告诉我angular例子中uploadImagePath回调函数的写法。

config: any = {
airMode: false,
tabDisable: true,
placeholder: '내용을 입력하세요.',
tabsize: 2,
height: '300px',
uploadImagePath: this.REST_API_ADDR + 'File/summernote',
popover: {
  table: [
    ['add', ['addRowDown', 'addRowUp', 'addColLeft', 'addColRight']],
    ['delete', ['deleteRow', 'deleteCol', 'deleteTable']],
  ],
  image: [
    ['image', ['resizeFull', 'resizeHalf', 'resizeQuarter', 'resizeNone']],
    ['float', ['floatLeft', 'floatRight', 'floatNone']],
    ['remove', ['removeMedia']],
  ],
  link: [['link', ['linkDialogShow', 'unlink']]],
  air: [ ['font', ['bold', 'italic', 'underline', 'strikethrough', 'superscript', 'subscript', 'clear',],],],
},
toolbar: [
  ['misc', ['codeview', 'undo', 'redo']],
  ['style', ['bold', 'italic', 'underline', 'clear']],
  ['font', ['bold', 'italic', 'underline', 'strikethrough', 'superscript', 'subscript', 'clear']],
  ['fontsize', ['fontname', 'fontsize', 'color']],
  ['para', ['style', 'ul', 'ol', 'paragraph', 'height']],
  ['insert', ['table', 'picture', 'link', 'video', 'hr']],
],
fontNames: ['Helvetica', 'Arial', 'Arial Black', 'Comic Sans MS', 'Courier New', 'Roboto', 'Times'],
  }

标签: asp.net-coreasp.net-web-apiangular7text-editorsummernote

解决方案


推荐阅读