本文整理匯總了Python中model.Node.imgurl方法的典型用法代碼示例。如果您正苦於以下問題:Python Node.imgurl方法的具體用法?Python Node.imgurl怎麽用?Python Node.imgurl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類model.Node
的用法示例。
在下文中一共展示了Node.imgurl方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: post
# 需要導入模塊: from model import Node [as 別名]
# 或者: from model.Node import imgurl [as 別名]
def post(self):
if self.cur_user and self.cur_user.flag==99:
n_id = self.request.get('id')
name = self.POST['name']
imgurl = self.POST['imgurl']
about = self.POST['about']
if name:
if n_id:
n_obj = Node.get_by_id(int(n_id))
else:
n_obj = None
if n_obj:
n_obj.name = name
n_obj.imgurl = imgurl
n_obj.about = about
n_obj.put()
else:
#get node id
nid_obj = Counter.get_or_insert('node_auto_increment', name='node_auto_increment', value = 1)
n_obj = Node(key=db.Key.from_path('Node', nid_obj.value))
n_obj.name = name
n_obj.imgurl = imgurl
n_obj.about = about
n_obj.put()
if n_obj.is_saved():
n_id = nid_obj.value
nid_obj.value += 1
db.run_in_transaction(obj_runput,nid_obj,['newest_add_node'])
self.redirect('/add-node?id=%s'%str(n_id))
else:
self.error(403)
self.write('403:forbidden')