How to use the tblib.handler.ResponseCode function in tblib

To help you get started, we’ve selected a few tblib examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github shiyanlou / louplus-python / taobei / tbbuy / handlers / cart_product.py View on Github external
def delete_cart_product(id):
    """删除购物车商品
    """

    cart_product = CartProduct.query.filter(CartProduct.id == id).first()
    if cart_product is None:
        return json_response(ResponseCode.NOT_FOUND)

    session.delete(cart_product)
    session.commit()

    return json_response(cart_product=CartProductSchema().dump(cart_product))
github shiyanlou / louplus-python / taobei / tbbuy / handlers / order_product.py View on Github external
def delete_order_product(order_id, product_id):
    order_product = OrderProduct.query.filter(and_(
        OrderProduct.order_id == order_id, OrderProduct.product_id == product_id)).first()
    if order_product is None:
        return json_response(ResponseCode.NOT_FOUND)
    session.delete(order_product)
    session.commit()

    return json_response(order_product=OrderProductSchema().dump(order_product))
github shiyanlou / louplus-python / taobei / challenge-02 / tbmall / handlers / product.py View on Github external
def product_info(id):
    """查询商品
    """

    product = Product.query.get(id)
    if product is None:
        return json_response(ResponseCode.NOT_FOUND)

    return json_response(product=ProductSchema().dump(product))
github shiyanlou / louplus-python / taobei / tbuser / handlers / address.py View on Github external
def address_info(id):
    """查询地址
    """

    address = Address.query.get(id)
    if address is None:
        return json_response(ResponseCode.NOT_FOUND)

    return json_response(address=AddressSchema().dump(address))