當前位置: 首頁>>代碼示例>>Python>>正文


Python Category.is_unique方法代碼示例

本文整理匯總了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
開發者ID:xianjunzhengbackup,項目名稱:code,代碼行數:24,代碼來源:views.py

示例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
開發者ID:xianjunzhengbackup,項目名稱:code,代碼行數:25,代碼來源:views.py


注:本文中的models.Category.is_unique方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。