09 2022 档案
摘要:系统现成的方法 def randeom_str(length=8): #生成a-zA-Z+0-9的字符串 chars = string.ascii_letters + string.digits strcode = "".join(random.sample(chars, length)) retu
阅读全文
摘要:https://blog.csdn.net/chenzhf_0122/article/details/121044668
阅读全文
摘要:一、项目的urls文件 from django.contrib import admin from django.urls import path,include from django.conf import settings from django.conf.urls.static import
阅读全文