摘要:
router.beforeEach((to, from, next) => { if (to.name "login") { next() return; } // 用户是否已登录 const info = userInfoStore() if (!info.userToken) { next({" 阅读全文
摘要:
Flexbox 布局对行内元素和块级元素都适用。无论是 <span>、<a> 这样的行内元素,还是 <div>、<p> 这样的块级元素,都可以在 Flexbox 容器中进行灵活的排列和对齐。 .pg-header { display: flex; flex-direction: row; justi 阅读全文
摘要:
1.创建vue项目 npm create vue@latest 2.下载依赖 cd "项目根目录" npm install axios element-plus npm install 3.main.js中引入包 // 引入element-plus import ElementPlus from ' 阅读全文
摘要:
法一: navicat迁移数据库 day36-03文件 2:46位置 (法二:代码实现,可以自己查下,day13项目部署时张开老师有带着做) 运行项目时: 1.运行项目时注意python解释器,django,mysql等版本要对应 2.迁移数据库 3.账号密码在day36-05文件后面14:49位置 阅读全文
摘要:
position可选 static静态定位:不需要定位 relative相对定位:相对自己原来位置 absolute绝对定位:相对于祖先定位元素(一般为relative)脱离文档流 fixed固定定位:固定窗口某一位置,脱离文档流 sticky粘性定位:浏览器窗口到达指定阈值时显示 z-index只 阅读全文
摘要:
上传文件 现在就可以上传文件啦,我放的是dj2_day32_rbac 进入到当前文件夹目录(或在当前文件夹下打开git bush) 上传总共就三句话: git add . // 把文件加入暂存区 git commit -m "这里是描述信息" git push origin master 这样就上传 阅读全文
摘要:
法一:最简单,直接下载压缩包,本地解压 法二:命令下载 1.配置公钥(如果是新设备) ssh-keygen -t ed25519 -C "Gitee SSH Key" 输入这行命令,按3次回车,演示如下: 生成的公钥就在红框文件夹下 复制该字符串,进入gitee的设置中,找到公钥粘贴该字符串 配置完 阅读全文
摘要:
1.filter示例 from django.template import Library register = Library() @register.filter def has_permission(request, route_name): is_super = request.user_ 阅读全文
摘要:
from django.utils.deprecation import MiddlewareMixin from django.shortcuts import redirect, HttpResponse from django.urls import reverse from www impo 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> body{ margin: 0; } .pg-header { height: 48px; background-c 阅读全文