大家好,我正在尝试将 tinymce 集成到 django 管理页面中。我已经安装了 django-tinymce 模块 (http://code.google.com/p/django-tinymce/) 我按照说明进行操作,所以这些是我的文件:
设置.py
INSTALLED_APPS = (
...
'tinymce',
)
TINYMCE_DEFAULT_CONFIG = {
'plugins': "table,paste,searchreplace",
'theme': "advanced",
}
TINYMCE_SPELLCHECKER = False
TINYMCE_COMPRESSOR = False
网址.py
urlpatterns = patterns('',
# Example:
# (r'^uboPy/', include('uboPy.foo.urls')),
# Uncomment the admin/doc line below to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
(r'^admin/', include(admin.site.urls)),
(r'^tinymce/', include('tinymce.urls')),
)
我在根目录中的一个文件夹中有tinymce的js,media/js
在模型中我有这一行: text = tinymce_models.HTMLField()
当我运行服务器时,我没有收到错误,但是当我进入模型的管理区域时,未加载 tinymce。使用 firebug,我看到 tinymce 库出现 404 错误,但路径是正确的。我的 url.py 有问题吗?
谢谢您的帮助