1.django 缓存设置 django的六种缓存(mysql+redis) :https://www.cnblogs.com/xiaonq/p/7978402.html#i6 1.1 安装Django缓存模块 pip install django-redis==4.12.1 1.2 syl/set ...
分类:
其他好文 时间:
2020-10-07 21:30:23
阅读次数:
35
1.1.user/urls.py 中添加路由 urlpatterns = [ path('register/', views.RegisterView.as_view()), # 注册视图, /user/register/ ] 1.2.user/views.py 中写注册视图函数 class Reg ...
分类:
其他好文 时间:
2020-10-07 21:13:12
阅读次数:
34
about.wxml <view class='container'> <text style='font-weight: bold; font-size: 60rpx;'> 电影周周看</text> <view> <text>我</text> <navigator style='display: ...
分类:
其他好文 时间:
2020-10-07 20:40:28
阅读次数:
30
三种方式实现作用域放值 springMVC处理请求过程中,往作用域中放值有以下三种方式: 总结:根据ModelAndView源码调试,不管用以下哪种方式,都会把Model数据和View数据封装到一个ModelAndView中 1 package com.iwakan.controller; 2 3 ...
分类:
其他好文 时间:
2020-10-07 20:32:36
阅读次数:
32
原文链接:https://www.cnblogs.com/inception6-lxc/p/8996050.html 在看书的时候有个往链表里添加节点的函数,代码中考虑到可能给出的头指针为空,并做另外一些处理。具体代码如下: [cpp] view plain copy print? #include ...
分类:
编程语言 时间:
2020-10-06 20:14:33
阅读次数:
21
1、构造函数也是一个普通函数,创建方式和普通函数一样,但构造函数习惯上首字母大写; 2、作用不一样(构造函数用来新建实例对象); 3、调用方式不一样。 a. 普通函数的调用方式:直接调用 person(); b.构造函数的调用方式:需要使用new关键字来调用 new Person(); 4、构造函数 ...
分类:
Web程序 时间:
2020-10-05 22:33:55
阅读次数:
50
1.编写注册接口 1.1 user/urls.py 中添加路由 urlpatterns = [ path('register/', views.RegisterView.as_view()), # 注册视图, /user/register/ ] 1.2 user/views.py 中写注册视图函数 ...
分类:
其他好文 时间:
2020-10-05 22:29:06
阅读次数:
35
给树莓派设置静态IP原因 DHCP自动分配的IP来回变动,导致远程连接无法实现 可以提高联网速度 网上大多数方法都是修改 /etc/network/interfaces 配置文件,增加静态IP的设定。但是在树莓派上通过修改 interfaces 设置静态IP的方法,并不完美,即便取得了静态IP,DH ...
分类:
其他好文 时间:
2020-10-05 22:18:20
阅读次数:
28
查询回文子串个数: #include<bits/stdc++.h> using namespace std; typedef long long LL; typedef pair<double,int> pii; const int N = 3e5+5; const int M = 1e6+5; c ...
分类:
其他好文 时间:
2020-10-05 22:16:55
阅读次数:
30
模仿论坛结构,数据库如下: 其中id是自增编号,后面几列依次是:标题、内容、作者。 按照设计,控制器应当包含5个action。 public ActionResult Index() { //初始化、查询数据库并显示数据,返回首页 return View(); } public ActionResu ...
分类:
Web程序 时间:
2020-10-05 21:54:24
阅读次数:
35