本文整理汇总了Python中models.Topic.node方法的典型用法代码示例。如果您正苦于以下问题:Python Topic.node方法的具体用法?Python Topic.node怎么用?Python Topic.node使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Topic
的用法示例。
在下文中一共展示了Topic.node方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: bbs_add_topic
# 需要导入模块: from models import Topic [as 别名]
# 或者: from models.Topic import node [as 别名]
def bbs_add_topic():
node_str = urllib.unquote(request.args.get('node', "").strip())
node = None
if node_str:
node = Node.query.filter(Node.name==node_str).first()
if not node:
return render_template("node_not_found.html", next=url_for('.bbs_add_topic'), name=node_str)
form = TopicForm(request.form)
form.node.choices = Section.query.get_all_nodes()
if node_str:
form.node.data=node.title
if request.method == 'POST' and form.validate():
if not node:
node = Node.query.filter(Node.title==form.data["node"].strip()).first()
if not node:
form.node.errors.append(u"节点不存在!")
return render_template("add_topic.html", form=form)
section = node.section
topic = Topic(user=current_user, title=form.data['title'].strip(), content=form.data["content"],
tags=form.data["tags"], created=datetime.now(), last_modified=datetime.now(),
last_reply_at=datetime.now())
topic.section = section
topic.node = node
#db.session.add(topic)
node.topic_count += 1
#db.session.add(node)
section.topic_count += 1
#db.session.add(section)
current_user.profile.topics += 1
db.session.add_all([topic, node, section, current_user.profile])
db.session.commit()
return redirect(url_for(".bbs_topic", id=topic.id))
if node_str:
action_url = url_for(".bbs_add_topic", node=node_str)
else:
action_url = url_for(".bbs_add_topic")
return render_template("add_topic.html", form=form, action_url=action_url)