本文整理汇总了Python中blogengine.models.Post.url方法的典型用法代码示例。如果您正苦于以下问题:Python Post.url方法的具体用法?Python Post.url怎么用?Python Post.url使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类blogengine.models.Post
的用法示例。
在下文中一共展示了Post.url方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: addPost
# 需要导入模块: from blogengine.models import Post [as 别名]
# 或者: from blogengine.models.Post import url [as 别名]
def addPost(request):
context = RequestContext(request)
posted = False
if request.method == 'POST':
newPost = Post()
newPost.title = request.POST['title']
newPost.url = request.POST['url']
newPost.author = request.user
newPost.pub_date = datetime.now()
newPost.body = request.POST['content']
print newPost.body
newPost.views = 0;
titles = Post.objects.all().filter(title = request.POST['title'])
if titles:
return HttpResponse("The title is already is use")
else:
newPost.save()
posted = True
#return HttpResponseRedirect('/blog/')
return render_to_response('blog/rand.html', {'posted': posted}, context)