django整合ckeditor
安装ckeditor pip install django-ckeditor 配置setting.py # 将ckeditor注册到django INSTALLED_APPS = [ …… ‘ckeditor’, ‘ckeditor_uploader’, ] model模型中字段使用编辑器 model.py class xxxxx(model.Model):…
少年老陈的博客(chenbing.name)
安装ckeditor pip install django-ckeditor 配置setting.py # 将ckeditor注册到django INSTALLED_APPS = [ …… ‘ckeditor’, ‘ckeditor_uploader’, ] model模型中字段使用编辑器 model.py class xxxxx(model.Model):…
调试python代码的时候,我们经常使用 dir()函数打印对象有哪些属性。但是他却不能打印出属性的值。 我们可以使用如下方式来打印对象的属性名及值: print (obj.__dict__) 据说python2 可以使用一下方法,这个笔者未测试: print ‘\n’.join([‘%s:%s’ % item for item in obj….