本文整理汇总了Python中models.Tags.name方法的典型用法代码示例。如果您正苦于以下问题:Python Tags.name方法的具体用法?Python Tags.name怎么用?Python Tags.name使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Tags
的用法示例。
在下文中一共展示了Tags.name方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: post
# 需要导入模块: from models import Tags [as 别名]
# 或者: from models.Tags import name [as 别名]
def post(request, slug):
try:
db_blog = Posts.objects.get(slug=slug)
except:
db_blog = None
if db_blog:
db_blog.tag_set.all().delete()
form = PostsForm(request.POST, instance=db_blog)
##print( "content %s" % request.POST.get("content"))
if form.is_valid():
blog_post = form.save(commit=False)
blog_post.mark_down = blogContentRender(blog_post.content)
tags = blog_post.tags.split(',')
blog_post.save()
for tag in tags:
t = Tags()
t.post = Posts.objects.get(slug=blog_post.slug)
t.name = tag.strip()
t.save()
form.save_m2m()
return HttpResponseRedirect("/")
c = {"form": form, "slug": slug}
c.update(csrf(request))
t = get_template("publish.html")
return HttpResponse(t.render(Context(c)))
示例2: get
# 需要导入模块: from models import Tags [as 别名]
# 或者: from models.Tags import name [as 别名]
def get(self):
user = users.get_current_user()
tag_str = self.request.get('tag')
if user:
tag = Tags.query(Tags.user == user, Tags.name == tag_str).get()
if tag is None:
newtag = Tags()
newtag.name = tag_str
newtag.user = user
else:
newtag = tag
newtag.put()