单用户登陆 session 参考 登录 方法一 从记录session的数据库中删除之前用户的的所有记录 login(request, user) #登录成功 # 登录之后获取获取最新的session_key session_key = request.session.session_key # 删除 ...
分类:
其他好文 时间:
2020-08-20 18:48:13
阅读次数:
62
CSS伪元素 :first-line; :first-letter :before :after :first-line 伪元素 "first-line" 伪元素用于向文本的首行设置特殊样式。 <html> <head> <style type="text/css"> p:first-line { ...
分类:
Web程序 时间:
2020-08-19 19:19:47
阅读次数:
80
错误情况: go: missing Git command. See https://golang.org/s/gogetcmd package github.com/astaxie/beego: exec: “git”: executable file not found in %PATH% 解决 ...
分类:
Web程序 时间:
2020-08-18 14:08:26
阅读次数:
104
这题真的是想了老半天,也不太会,看了看别人的,学习学习 1 #include<iostream> 2 #include<algorithm> 3 #include<vector> 4 #include<cmath> 5 using namespace std; 6 /*用于排序的二维数组*/ 7 i ...
分类:
编程语言 时间:
2020-08-18 13:13:41
阅读次数:
62
一、概念 #只要函数内部包含有yield关键字,那么函数名()的到的结果就是生成器,并且不会执行函数内部代码 def func(): print(' >first') yield 1 print(' >second') yield 2 print(' >third') yield 3 print(' ...
分类:
其他好文 时间:
2020-08-17 17:48:59
阅读次数:
88
这道题的数据是不是有点水?还是题目描述有问题? #include<bits/stdc++.h> #define x first #define y second using namespace std; const int N=1005; typedef pair<int,int> PII; int ...
分类:
其他好文 时间:
2020-08-17 17:32:42
阅读次数:
60
1.移动端h5展示一般通过设置meta的viewport来规范页面的展示效果 /* 在ios >= 10 系统下,user-scalable=no已不起作用 */<meta name="viewport" content="width=device-width, initial-scale=1.0, ...
分类:
移动开发 时间:
2020-08-17 17:17:03
阅读次数:
104
This is an in-detail account of the Raspberry Pi boot process collected from various sources, mainly from the official forums. First, you need to know ...
分类:
Web程序 时间:
2020-08-12 15:43:48
阅读次数:
87
本人git https://github.com/bigeyes-debug/Algorithm 一丶双向链表 单向链表只能通过node单向next从头遍历链表,只能直接获得后继,无法获得前驱 双向链表增加prev属性,prev属性指向前驱 双向链表可以从first 和last两个方向开始查找 二丶 ...
分类:
编程语言 时间:
2020-08-12 15:43:31
阅读次数:
65
地址 https://leetcode-cn.com/problems/kth-missing-positive-number/ 给你一个 严格升序排列 的正整数数组 arr 和一个整数 k 。 请你找到这个数组里第 k 个缺失的正整数。 示例 1: 输入:arr = [2,3,4,7,11], k ...
分类:
其他好文 时间:
2020-08-09 19:10:05
阅读次数:
80