📅  最后修改于: 2022-03-11 14:45:16.132000             🧑  作者: Mango
def order(request, quantity=1):
# Process the order by calling the mapped method
order_id = CoffeeShopService.place_order(quantity)
return HttpResponse({'order_id': order_id, mimetype='application/json')