美文网首页Django
django-tinymce简单使用

django-tinymce简单使用

作者: 你常不走的路 | 来源:发表于2018-03-11 10:49 被阅读264次

    安装 django-tinymce:

    $ pip install django-tinymce
    

    添加 tinymce 到settings.py中的 INSTALLED_APPS 中

    INSTALLED_APPS = (
        ...
        'tinymce',
    )
    

    在urls.py 中配置 tinymce.urls

    urlpatterns = [
        ...
        url(r'^tinymce/', include('tinymce.urls')),
    ]
    

    在你的model中

    from django.db import models
    from tinymce.models import HTMLField
    
    class MyModel(models.Model):
        ...
        content = HTMLField()
    
    如果要想django-tinymce像预期那样工作 使用静态文件,不同的案例 有不同的配置方法,更多可以看文档!
    这是文档地址:文档

    相关文章

      网友评论

        本文标题:django-tinymce简单使用

        本文链接:https://www.haomeiwen.com/subject/cuwifftx.html