本文整理汇总了Python中blog.models.Comment.user_agent方法的典型用法代码示例。如果您正苦于以下问题:Python Comment.user_agent方法的具体用法?Python Comment.user_agent怎么用?Python Comment.user_agent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类blog.models.Comment
的用法示例。
在下文中一共展示了Comment.user_agent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: post
# 需要导入模块: from blog.models import Comment [as 别名]
# 或者: from blog.models.Comment import user_agent [as 别名]
def post(self,*args,**kwargs):
self.object = self.get_object()
request = self.request
context = self.get_context_data(object=self.object)
comment_f = myforms.CommentForm(self.request.POST)
if comment_f.is_valid():
# (1,2,3).append(5)
comment = Comment()
post_data = comment_f.cleaned_data
comment.text = post_data['text']
comment.reply_to = post_data['reply_to']
comment.email_id = post_data['email_id']
comment.comment_for = self.object
comment.user_name = post_data['user_name']
comment.user_url = post_data['user_url']
comment.user_ip = request.META['REMOTE_ADDR']
comment.user_agent = request.META['HTTP_USER_AGENT']
comment.is_public = getattr(settings, 'AUTO_APPROVE_COMMENTS',
True)
comment.save()
return HttpResponseRedirect('#comment-%s' % comment.pk)
context.update({'comment_form': comment_f})
return self.render_to_response(context)