本文整理汇总了Python中blog.models.Comment.password方法的典型用法代码示例。如果您正苦于以下问题:Python Comment.password方法的具体用法?Python Comment.password怎么用?Python Comment.password使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类blog.models.Comment
的用法示例。
在下文中一共展示了Comment.password方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: blog_comment
# 需要导入模块: from blog.models import Comment [as 别名]
# 或者: from blog.models.Comment import password [as 别名]
def blog_comment(request, offset):
offset=int(offset)
e=Entries.objects.filter(id=offset)
if not request.POST['name']:
return HttpResponse(u'이름을 입력하세요')
cmt_name=request.POST['name']
cmt_content=request.POST['content']
if not request.POST['content']:
return HttpResponse(u'글 내용을 입력하세요')
cmt_password=request.POST['password']
if not request.POST['password']:
return HttpResponse(u'비밀번호를 입력하세요')
cmt_password = md5.md5(cmt_password).hexdigest()
cmt=Comment()
try:
cmt.name=cmt_name
cmt.password=cmt_password
cmt.text=cmt_content
ie=Entries.objects.get(id=request.POST['entry_id'])
cmt.entry=ie
ie.cnumber=ie.cnumber+1
ie.save()
cmt.save()
except:
return HttpResponse('오류가 나고 있습니다')
c=Comment.objects.filter(entry=Entries.objects.get(id=offset))
return render_to_response('blog.html',{'offset':offset,'e':e,'c':c})