09 2020 档案
摘要:原文:原文链接 在css下添加如下代码即可: * { cursor: url("Aero_arrow.cur"),auto; }
阅读全文
摘要:在css中只需要加入如下代码即可: html{ scroll-behavior: smooth; }
阅读全文
摘要:记录一下,方便自己! 清华源: https://pypi.tuna.tsinghua.edu.cn/simple 豆瓣源:https://pypi.douban.com/simple 使用例子: pip install -i https://pypi.tuna.tsinghua.edu.cn/sim
阅读全文
摘要:git init git add . git commit -m "备注" git remote add origin git@github.com:catfish18674282560/my_blog_article.git git push -u origin main # github把mas
阅读全文
摘要:中间件介绍: 中间件是在request和response处理过程中的一个插件。比如在request到达视图函数之前,我们可以使用中间件来做一些相关的事情,比如可以判断当前这个用户有没有登陆,如果登陆了就绑定一个user对象到request上。也可以在response到达浏览器之前,做一些相关的处理,
阅读全文
摘要:参考资料:https://www.cnblogs.com/wumingxiaoyao/p/6928297.html 依赖 默认在创建项目后就能使用。 1,确保django.contrib.admin在INSTALL_APP中,同时还确保django.contrib.contenttypes, dja
阅读全文
摘要:我只把相关常用的东西写下来。其他的,常用了我会补充。 限制请求method from django.shortcuts import render from django.views.decorators.http import require_http_methods @require_http_
阅读全文
摘要:目录 \1. 设置语言和时区 \2. 汉化数据表中的数据结构 \3. 汉化app名称 \4. 修改后台标题 聊聊 这则笔记来自于https://www.bilibili.com/video/av52325224。 设置语言和时区 # settings.py LANGUAGE_CODE = 'zh-h
阅读全文
摘要:目录 1,发送邮件 2,分页器 3,站点地图 4,RSS订阅功能 5,自定义上下文处理器 发送邮件 django提供了一个发送邮件的接口,相比python的smtplib库,发送的速度更快。 settings.py文件配置 # settings.py EMAIL_USER_SSL = True EM
阅读全文
摘要:普通的富文本编辑 安装:pip install django-ckeditor 激活应用'ckeditor' 然后使用 from ckeditor.fields import RichTextField content = RichTextField() 加上上传图片 安装: pip install
阅读全文
摘要:名称:Typora。百度搜索下载即可。 免费服务器平台(sanfengyun):https://www.sanfengyun.com/
阅读全文