本文整理匯總了Python中model.Node.add_node_key方法的典型用法代碼示例。如果您正苦於以下問題:Python Node.add_node_key方法的具體用法?Python Node.add_node_key怎麽用?Python Node.add_node_key使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類model.Node
的用法示例。
在下文中一共展示了Node.add_node_key方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: get
# 需要導入模塊: from model import Node [as 別名]
# 或者: from model.Node import add_node_key [as 別名]
def get(self, nodeid):
n_obj = Node.get_by_key('n-'+str(nodeid))
if not n_obj:
self.set_status(404)
self.write('404')
return
from_id = int(self.get_argument('id', '0'))
if from_id<=0 and n_obj['count']:
from_id = int(n_obj['count'])
to_id = from_id - EACH_PAGE_POST_NUM
if to_id<0:
to_id = 0
self.echo('nodedetail.html', {
'title': n_obj['name'],
'n_obj': n_obj,
'from_id': from_id,
'to_id': to_id,
'topic_objs': Node.get_page_topic(str(nodeid), from_id, to_id),
'newest_node': Node.get_newest(),
'recent_node': Node.get_recent_node(),
'hot_node': Node.get_hot_node(),
'recent_topic_objs': Commomkvdb.get_comment_topic_by_keys('recent-topic-home'),
'comment_topic_objs': Commomkvdb.get_comment_topic_by_keys('recent-comment-topic-home'),
}, layout='_layout.html')
Node.add_node_key('n-'+str(nodeid))