某个设计本来采用了一个比较不错的在线评论模块,不过答辩的时候丫居然不给网!!想偷个懒还是挺难啊….
那就用自带的评论模块吧,django版本是1.5.3。
首先把'django.contrib.comments'添加到INSTALLED_APPS中,然后添加url:
urlpatterns = patterns('',
......
url(r'^comments/', include('django.contrib.comments.urls')),
......
)
在需要显示评论的HTML中:
自己封装了一个logging在django中使用,结果发现输出的时候总是重复输出,比如:
DEBUG---- 2014/03/31 10:38:13:
!!
DEBUG---- 2014/03/31 10:38:13:
!!
DEBUG---- 2014/03/31 10:38:13:
!
今天把django从1.5.5升级到了1.6.2,结果使用mysql-python查询数据库时候就报了这个错误:“not all arguments converted during string formatting”
貌似这个问题应该和django没什么关系,正好今天就看看mysql-python的源码吧。想看如何解决的请直接跳到最后。
查询部分简化后如下:
posistion = "top"
order = r"select id,p_name,p_explain,p_href from pictures where p_position = %s and p_show = 1 order by -id"
self.
第一种HttpResponse,最基本的返回方式,可以直接返回字符:
from django.http import HttpResponse
def index(request):
return HttpResponse(“a test”)
或者结合contextloder返回网页:
from django.template import Context, loader
from polls.models import Poll
def index(request):
latest_poll_list = Poll.objects.order_by('-pub_date')[:5]
template = loader.get_template('polls/index.html')
context = Context({ 'latest_poll_list': latest_poll_list, })
return HttpResponse(template.render(context))
有些时候我们需要项目中的app访问不同的数据库,这时就要进行分库操作。
首先建立一个db_router.py,内容示例:
#coding=utf-8
DATABASES = {
'default': {
'ENGINE': 'django.
今天需要一个文件上传功能,所以代码如下
def ci_test(request):
try:
if request.POST.has_key("send"):
xml_string=""
final_xml = ""
file_obj = request.