视图,基于函数的视图,函数视图--function base views
处理 post ,put,delete 请求,需要使用csrftoken
def funcdemo(request):
# 处理 GET请求
if request.method == "GET":
# 查询商品信息
return JsonResponse({"method": "get"})
if request.method == "POST":
# 创建 商品
return JsonResponse({"method": "post"})
if request.method == "PUT":
# 更新商品
return JsonResponse({"method":"PUT"})
if request.method == "DELETE":
# 删除商品
return JsonResponse({"method":"delete"})