本文整理匯總了Python中models.Category.is_unique方法的典型用法代碼示例。如果您正苦於以下問題:Python Category.is_unique方法的具體用法?Python Category.is_unique怎麽用?Python Category.is_unique使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.Category
的用法示例。
在下文中一共展示了Category.is_unique方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: post
# 需要導入模塊: from models import Category [as 別名]
# 或者: from models.Category import is_unique [as 別名]
def post(self):
request_dict = request.get_json()
if not request_dict:
resp = {'message': 'No input data provided'}
return resp, status.HTTP_400_BAD_REQUEST
errors = category_schema.validate(request_dict)
if errors:
return errors, status.HTTP_400_BAD_REQUEST
category_name = request_dict['name']
if not Category.is_unique(id=0, name=category_name):
response = {'error': 'A category with the same name already exists'}
return response, status.HTTP_400_BAD_REQUEST
try:
category = Category(category_name)
category.add(category)
query = Category.query.get(category.id)
result = category_schema.dump(query).data
return result, status.HTTP_201_CREATED
except SQLAlchemyError as e:
db.session.rollback()
resp = {"error": str(e)}
return resp, status.HTTP_400_BAD_REQUEST
示例2: patch
# 需要導入模塊: from models import Category [as 別名]
# 或者: from models.Category import is_unique [as 別名]
def patch(self, id):
category = Category.query.get_or_404(id)
category_dict = request.get_json()
if not category_dict:
resp = {'message': 'No input data provided'}
return resp, status.HTTP_400_BAD_REQUEST
errors = category_schema.validate(category_dict)
if errors:
return errors, status.HTTP_400_BAD_REQUEST
try:
if 'name' in category_dict:
category_name = category_dict['name']
if Category.is_unique(id=id, name=category_name):
category.name = category_name
else:
response = {'error': 'A category with the same name already exists'}
return response, status.HTTP_400_BAD_REQUEST
category.update()
return self.get(id)
except SQLAlchemyError as e:
db.session.rollback()
resp = {"error": str(e)}
return resp, status.HTTP_400_BAD_REQUEST