本文整理匯總了Python中tornado.util.ObjectDict.return_code方法的典型用法代碼示例。如果您正苦於以下問題:Python ObjectDict.return_code方法的具體用法?Python ObjectDict.return_code怎麽用?Python ObjectDict.return_code使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類tornado.util.ObjectDict
的用法示例。
在下文中一共展示了ObjectDict.return_code方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: wrapper
# 需要導入模塊: from tornado.util import ObjectDict [as 別名]
# 或者: from tornado.util.ObjectDict import return_code [as 別名]
def wrapper(*args, **kwargs):
try:
return func(*args, **kwargs)
except Exception as e:
logger.info(args)
logger.info(kwargs)
logger.info("====[EXIT]====")
# svc = args[0]
# # from code import interact
# # interact(local=locals())
# if isinstance(e, Exception):
# svc.db.rollback()
# logger.info("====[ROLLBACK]====")
# else:
# svc.db.commit()
# # svc.db.flush()
# logger.info("====[COMMIT]====")
# svc.db.remove()
# svc.db.close()
logger.info("====[CLOSE]====")
# svc = args[0]
# svc.db.close()
# svc.db.remove()
# logger.info(svc.db)
logThrown()
data = ObjectDict()
data.return_code = ERROR.system_err.errcode
data.return_message = e.__unicode__()
data.data = None
return data
示例2: failures
# 需要導入模塊: from tornado.util import ObjectDict [as 別名]
# 或者: from tornado.util.ObjectDict import return_code [as 別名]
def failures(self, failure_list, data=None):
result = ObjectDict()
result.return_code = ERROR.database_save_err.errcode
# result.return_message = u",".join(["(%s)%s" % (f.return_code, f.return_message) for f in failure_list])
result.return_message = u"\n,".join([f for f in failure_list])
result.return_messages = failure_list
result.data = data
return result
示例3: failure
# 需要導入模塊: from tornado.util import ObjectDict [as 別名]
# 或者: from tornado.util.ObjectDict import return_code [as 別名]
def failure(self, return_code=0, return_message="", data=None):
result = ObjectDict()
result.return_code = return_code
result.return_message = return_message
result.data = data
return result
示例4: failure
# 需要導入模塊: from tornado.util import ObjectDict [as 別名]
# 或者: from tornado.util.ObjectDict import return_code [as 別名]
def failure(self, error_obj, data=None):
result = ObjectDict()
result.return_code = error_obj.errcode
result.return_message = error_obj.errvalue
result.data = data
return result
示例5: success
# 需要導入模塊: from tornado.util import ObjectDict [as 別名]
# 或者: from tornado.util.ObjectDict import return_code [as 別名]
def success(self, data=None):
result = ObjectDict()
result.return_code = 0
result.return_message = u""
result.data = data
return result