0

我已经按照文档中的说明在 django 1.5 上安装了 django-ckeditor 。如文档中所述,我已将应用程序 models.py 中的 TextField 更改为 RichTextField。但是我仍然在 Django 管理员而不是 ckeditor 中看到空白文本区域。 这个问题是 3 年前提出的,但没有一个答案对我有用。当我得到页面时,ckeditor.js 加载得很好。有什么建议么?我的应用名称是新闻源。

模型.py:

from cms.models.pluginmodel import CMSPlugin
from cms.models import Page
from django.db import models
from time import time
from ckeditor.fields import RichTextField

def get_upload_file_name(instance, filename):
    return "uploaded_files/%s_%s" % (str(time()).replace('.','_'),filename)


# Create your models here.
class NewsFeed (models.Model):
    title = models.CharField(('Feed Name'),max_length=200,help_text=('Feed name is visible only in edit mode'))
    publisher = models.CharField(('Publisher'),max_length=200)

    def __unicode__(self):
        return self.title

    def get_absolute_url(self):
        return "/newsfeed/get/%i" % self.id

class NewsItem(models.Model):
    feed_id = models.ForeignKey(NewsFeed)
    title = models.CharField(('Title'),max_length=200)
    subtitle = models.CharField(('Sub-Title'),max_length=350,help_text=('Subtitles are displayed in auto-scroller and has max characters of 350'))
    #body = models.TextField(('Content'),blank=True,help_text=('Content is NOT visible in auto-scroller !'))
    body = RichTextField()      
    url = models.URLField(("Link"), blank=True, null=True)
    page_link = models.ForeignKey(Page, verbose_name=("page"), blank=True, null=True, help_text=("A link to a page has priority over a text link."))
    pub_date = models.DateTimeField('Publish Date')
    is_published = models.BooleanField(('Published'), default=False)


class NewsFeedPlugin(CMSPlugin):
    newsfeed = models.ForeignKey(NewsFeed)

管理员.py:

from django.contrib import admin
from newsfeed.models import NewsFeed,NewsItem
from cms.admin.placeholderadmin import PlaceholderAdmin


class NewsItemInline(admin.StackedInline):
    model = NewsItem
    extra=0

class NewsFeedAdmin(admin.ModelAdmin):
    inlines = [NewsItemInline]
    class Media:
       js = ('ckeditor/ckeditor/ckeditor.js')
admin.site.register(NewsFeed,NewsFeedAdmin)

来自ckeditor的config.js:

/**
 * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.html or http://ckeditor.com/license
 */

CKEDITOR.editorConfig = function( config ) {
    // Define changes to default configuration here. For example:
    // config.language = 'fr';
    // config.uiColor = '#AADC6E';
};
4

2 回答 2

5

最简单的方法是使用class MediaDjango 的ModelAdmin.

假设您有一个Article模型TextField,您希望向其中添加 ckeditor。假设您已将文件保存在ckeditor.js项目的static文件夹中,您应该执行以下操作:

管理员.py

class ArticleAdmin(admin.ModelAdmin):
    ...
    # your code here 
    ...

    class Media:
        js = ('ckeditor.js',)
        # do not write '/static/ckeditor.js' as Django automatically looks 
        # in the static folder

而已。

如果您希望为 ckeditor 或更多 JavaScript 文件添加配置文件,只需执行以下操作:

js = ('ckeditor.js', 'configuration-ckeditor.js')

如果您希望添加 TinyMCE 而不是 ckeditor,我在 GitHub 上有一个存储库以使其更容易:https ://github.com/xyres/django-tinymce-noapp

更新

查看您的配置文件后,我确定问题不在 Django 中,而是在您的配置文件中。

您需要告诉 CKEditor 要将编辑器添加到哪个字段。因此,从配置文件中删除所有内容并仅添加这一行:

CKEDITOR.replace('textarea');

这将用编辑器替换文本区域。

不要忘记将此配置文件添加到class Media.

于 2014-11-19T16:36:42.323 回答
0

您可以按照 github-django ckeditor 的这一步操作,它将以 ckeditor 作为输出成功运行。我已经通过制作模型并对其进行测试进行了验证:链接:https ://github.com/django-ckeditor/django-ckeditor

于 2017-01-25T09:01:20.163 回答