Py学习  »  fc不将就  »  全部回复
回复总数  3
9 年前
回复了 fc不将就 创建的主题 » django项目部署到apache后出现问题

在apache的配置文件中添加:

vim /usr/local/apache2/conf/httpd.conf

WSGIPythonPath /home/mysite:/usr/lib/python2.7/site-packages/

引号前面/home/mysite 你项目目录,/usr/lib/python2.7/site-packages/这个是python包目录。

如果有多个项目就一直加::::::

具体可以看我之前部署的记录fangc

9 年前
回复了 fc不将就 创建的主题 » 请教一个view问题。

from django.views import generic

class BlogUpdate(generic.UpdateView):

       model = ServerInformation
       fields = ["ExpirTime(要更新的字段)","要更新的字段"]
       template_name_suffix = '_update_form'[模版名称]

参考:http://python.usyiyi.cn/django/ref/class-based-views/generic-editing.html#updateview

不知道DjangoUeditor这个满足你的要求不,基于百度的开源编辑器的django应用。https://github.com/zhangfisher/DjangoUeditor