本文整理匯總了Python中app.models.city.City.get_or_create方法的典型用法代碼示例。如果您正苦於以下問題:Python City.get_or_create方法的具體用法?Python City.get_or_create怎麽用?Python City.get_or_create使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app.models.city.City
的用法示例。
在下文中一共展示了City.get_or_create方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: create_new_city
# 需要導入模塊: from app.models.city import City [as 別名]
# 或者: from app.models.city.City import get_or_create [as 別名]
def create_new_city(state_id):
post_data = request.values
if 'name' not in post_data:
return {'code': 40000, 'msg': "Missing parameters"}, 400
try:
city_row, created = City.get_or_create(state=state_id, name=post_data['name'])
if not created:
out = {'code': 10002, 'msg': 'City already exists in this state'}
return out, 409
except City.DoesNotExist:
out = {'code': 10002, 'msg': 'state_id does not exist'}
return out, 409
return city_row.to_dict()