Giter VIP home page Giter VIP logo

Comments (13)

xionglilong avatar xionglilong commented on August 16, 2024 2

demo是没有问题的。查出原因了,是media的URL配置问题,不能正确的上传文件。改成截图下面的配置就可以了。
_20180410141053

from django-simditor.

istommao avatar istommao commented on August 16, 2024

额 好的 我看看能不能转成图片存路径

from django-simditor.

ybyangjian avatar ybyangjian commented on August 16, 2024

能添加插入表情的功能吗? @istommao

from django-simditor.

istommao avatar istommao commented on August 16, 2024

@snwgijava 我看看有没有第三方的

from django-simditor.

istommao avatar istommao commented on August 16, 2024

我看了下 上传的 都是 地址啊,你什么方式上传变成 base64了

from django-simditor.

 avatar commented on August 16, 2024

的确是以base64放到数据库中的

from django-simditor.

istommao avatar istommao commented on August 16, 2024

@snwgijava 表情功能已添加

from django-simditor.

xionglilong avatar xionglilong commented on August 16, 2024

@istommao 安装说明配置,本地上传的文件确实是base64编码,占用数据库很大,如果能修改下更好

from django-simditor.

istommao avatar istommao commented on August 16, 2024

@xionglilong 能否截图看下你的 配置,我本地一只都是存的地址,没试出来过

from django-simditor.

xionglilong avatar xionglilong commented on August 16, 2024

@istommao 配置是直接复制过来的,用的python3.6和django2.0。是不是版本问题。

models.py

from django.db import models
from simditor.fields import RichTextField
class News(models.Model):
title = models.CharField("标题", max_length=100)
content = RichTextField("内容", max_length=1000000)
add_time = models.DateTimeField("添加时间", auto_now_add=True)

urls.py

path('media/<str:filename>', serve, {"document_root": MEDIA_ROOT}),  # 媒体文件URL
path('simditor/', include('simditor.urls'))

settings.py

INSTALLED_APPS = ['simditor']
STATIC_URL = '/static/' 

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
]
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, "media")

SIMDITOR_UPLOAD_PATH = 'uploads/'
SIMDITOR_IMAGE_BACKEND = 'pillow'

SIMDITOR_TOOLBAR = [
    'title', 'bold', 'italic', 'underline', 'strikethrough', 'fontScale',
    'color', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link',
    'image', 'hr', '|', 'indent', 'outdent', 'alignment', 'fullscreen',
    'markdown', 'emoji'
]

SIMDITOR_CONFIGS = {
    'toolbar': SIMDITOR_TOOLBAR,
    'upload': {
        'url': '/simditor/upload/',
        'fileKey': 'upload'
    },
    'emoji': {
        'imagePath': '/static/simditor/images/emoji/'
    }
}

from django-simditor.

istommao avatar istommao commented on August 16, 2024

@xionglilong pillow 装了吧

image
截图看看 你在上传图片后这个地址显示是怎么样的

from django-simditor.

xionglilong avatar xionglilong commented on August 16, 2024

_20180410083742

from django-simditor.

istommao avatar istommao commented on August 16, 2024

你git clone https://github.com/istommao/django-simditor.git 然后在 simditor_demo 里 试试看
@xionglilong

from django-simditor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.