摘要: 1. 字符串补位 左右中 对齐 str1 = 'space' str1.ljust(10, '-') # 左对齐 'space ' str1.rjust(10, '-') # 右对齐 ' space' str1.center(10, '-') # 居中对齐 '--space ' 2. 字符串补零 s 阅读全文
posted @ 2022-04-12 15:45 是阿杰呀 阅读(700) 评论(0) 推荐(0)
摘要: 1. settings 配置 MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(BASE_DIR, 'media') 2.1 urls 配置(方式一) from django.conf.urls.static import static from dja 阅读全文
posted @ 2022-04-12 11:59 是阿杰呀 阅读(152) 评论(0) 推荐(0)
摘要: 1. 文件上传的路径, 自定义 图片和视频分类存放, 以时间日期分文件夹存放 # 自定义 文件上传的路径 def upload_to(instance, filename): now_date = datetime.now().date() year, month, day = [str(now_d 阅读全文
posted @ 2022-04-12 11:20 是阿杰呀 阅读(125) 评论(0) 推荐(0)