本文整理汇总了Python中models.Product.get_by_id方法的典型用法代码示例。如果您正苦于以下问题:Python Product.get_by_id方法的具体用法?Python Product.get_by_id怎么用?Python Product.get_by_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Product
的用法示例。
在下文中一共展示了Product.get_by_id方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: post
# 需要导入模块: from models import Product [as 别名]
# 或者: from models.Product import get_by_id [as 别名]
def post(self, **kwargs):
product_quantity = self.request.form.get('product_quantity', type=int)
product_id = self.request.form.get('product_id', type=int)
# check if product exists
product = Product.get_by_id(product_id)
product_name = product.name
product_price = product.price
product_unit = product.unit
context = {}
if product is not None:
cart = self._add_to_cart(product_id, product_quantity, product_name, product_price, product_unit)
context = { 'success': True, 'products': cart }
else:
context = { 'success': False, 'products': [] }
return render_json_response(context)
示例2: post
# 需要导入模块: from models import Product [as 别名]
# 或者: from models.Product import get_by_id [as 别名]
def post(self):
user = users.get_current_user()
action = self.request.POST.get('action')
# En la vista de productos, se envía un campo oculto llamado 'action'
# Este campo puede tener tres valores distintos:
# - 'create': se crea un nuevo producto aleatoriamente y se añade al listado principal de productos.
# - 'buy': el usuario compra un nuevo producto.
# - 'delete': se elimina un producto del listado principal.
if action == 'create':
product = Product(name='p' + str(random.randint(NAME_VALUES[0], NAME_VALUES[1])),
cost=random.randint(PRICE_VALUES[0], PRICE_VALUES[1]))
product.put()
elif user:
product = Product.get_by_id(int(self.request.POST.get('id')))
app_user = AppUser.get_or_insert(get_user_key(user),
identity=user.user_id(),
email=user.email())
if action == 'buy':
app_user.add_product(product)
elif action == 'delete':
app_user.remove_product(product)
ndb.Key(Product, product.key.id()).delete()
self.redirect(URLS['products'])