摘要:
function doDelete(idx, id) { _axios.delete(`/user/${id}/`).then((res) => { if (res.data.code 0) { dataList.value.splice(idx, 1) } }) } 阅读全文
摘要:
根urls.py from django.contrib import admin from django.urls import path, include, re_path from django.views.static import serve from django.conf import 阅读全文
摘要:
阅读全文
摘要:
1.使用示例 from utils.view import BaseView class VideoView(BaseView, ModelViewSet): # ... # return Response({"code": 0, "data": context}) return Response( 阅读全文