本文整理汇总了Python中DoctorSpring.models.User.is_existing_phone方法的典型用法代码示例。如果您正苦于以下问题:Python User.is_existing_phone方法的具体用法?Python User.is_existing_phone怎么用?Python User.is_existing_phone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DoctorSpring.models.User
的用法示例。
在下文中一共展示了User.is_existing_phone方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getMobileVerifyPhone
# 需要导入模块: from DoctorSpring.models import User [as 别名]
# 或者: from DoctorSpring.models.User import is_existing_phone [as 别名]
def getMobileVerifyPhone(phoneNumber=None):
try:
telPhoneNo=str(phoneNumber)
if User.is_existing_phone(telPhoneNo):
LOG.info("verify success:" + phoneNumber)
return json.dumps(rs.SUCCESS.__dict__,ensure_ascii=False)
else:
result=rs.ResultStatus(rs.FAILURE.status,"电话号码不存在")
#LOG.info("!!!!" + str(result.__dict__) + "!!!!")
return json.dumps(result.__dict__,ensure_ascii=False)
except Exception,e:
LOG.error(e.message)
return json.dumps(rs.FAILURE.__dict__,ensure_ascii=False)