Django框架 特点: 快速开发 安全可靠 超可伸缩性 使用templates时,要在setting当中加一个 'DIRS': [os.path.join(BASE_DIR,'templates')], 创建应用 python3 manage.py startapp app_name 可以将tam ...
分类:
其他好文 时间:
2020-06-21 20:14:35
阅读次数:
61
一、前后端不分离与前后端分离的比较 前后端不分离特点: 后端需控制数据的展示 前后端不分家,耦合严重 返回的是HTML页面,适应性、拓展性差 只能用于浏览器,其它终端不匹配 前后端分离的特点: 当前主流 后端只对数据进行处理,只提供数据 前端效率、页面好不好看,全由前端负责,前后端完全独立 解耦合 ...
分类:
其他好文 时间:
2020-06-21 20:14:22
阅读次数:
207
删除功能: 创建DeleteNewsServlet @WebServlet("/deleteServlet") public class DeleteNewsServlet extends HttpServlet { private static final long serialVersionUI ...
分类:
Web程序 时间:
2020-06-21 20:13:57
阅读次数:
54
#include <iostream> #include <cstdio> #include <cstring> #include <cmath> #define N 2000005 using namespace std; const int inf=1000000007; int n,m,S,T ...
分类:
其他好文 时间:
2020-06-21 20:13:22
阅读次数:
46
Django rest framework源码分析(3) 节流 添加节流 自定义节流的方法 限制60s内只能访问3次 (1)API文件夹下面新建throttle.py,代码如下: # utils/throttle.py from rest_framework.throttling import Ba ...
分类:
其他好文 时间:
2020-06-21 20:12:57
阅读次数:
44
一、html基础 1、基本组成结构 <html> <head> <title> <body>等标签 2、常用标签 *表单<form action="提交地址(url)" method="提交方式(post/get)" [name="表单名称"]>//文本框 <input type="text" na ...
分类:
编程语言 时间:
2020-06-21 20:12:41
阅读次数:
56
字符函数 length() concat() substr() instr() trim() upper() lower() lpad() rpad() replace() 数学函数 round() ceil() truncate() mod() 日期函数 now() curdate() curti ...
分类:
数据库 时间:
2020-06-21 20:11:50
阅读次数:
69
【最小栈】:
设计一个支持 push ,pop ,top 操作,并能在常数时间内检索到最小元素的栈。 ...
分类:
编程语言 时间:
2020-06-21 20:11:13
阅读次数:
57
代码 /** * This file is part of ORB-SLAM2. * * Copyright (C) 2014-2016 Raúl Mur-Artal <raulmur at unizar dot es> (University of Zaragoza) * For more inf ...
分类:
其他好文 时间:
2020-06-21 20:10:49
阅读次数:
118
问题1: 启动JSOP后,Matlab报错如下: 错误使用 COM.CSTStudio_application/NewMWS 错误: 远程过程调用失败。 解决方案: 在关闭CST之后不要马上运行JSOP,稍等片刻再运行。 问题2: JSOP在运行时,CST卡死不动 解决方案: 等待几分钟后,CST会 ...
分类:
其他好文 时间:
2020-06-21 20:10:30
阅读次数:
49
前言 问题: 比如说我设置了width为100%了,这个时候我需要padding,但是padding-right似乎没有生效。 正文 原因 实际width=100%容器宽度+padding>容器宽度 实际上padding 生效了,但是没有给我们显示出来。 解决方案 box-sizing: borde ...
分类:
Web程序 时间:
2020-06-21 20:09:49
阅读次数:
75
P1216 数字三角形 每个节点的值只受左上,右上两节点影响。索引从1开始,避免处理边界问题。 int n,ans,a[1005][1005],dp[1005][1005]; //pull: dp[i][j] = max(dp[i - 1][j - 1], dp[i - 1][j]) + dp[i] ...
分类:
其他好文 时间:
2020-06-21 20:09:12
阅读次数:
61
ajax将数据遍历给select的option选项 jsp: <select name="type" id="typeId"> <option>请选择</option> </select>js: $.ajax({ url : "/xxxx.do" , type : "GET", dataType:" ...
分类:
Web程序 时间:
2020-06-21 20:08:55
阅读次数:
92
关机: 1. poweroff 2.shutdown -h now --立刻关机 3. shutdown -h 10 过10分钟关机 重启: 1.reboot 2. shutdow -r now --立刻重启 3. shutdown -r 10 --过10分钟重启 4. shutdown -r 20 ...
分类:
其他好文 时间:
2020-06-21 20:08:43
阅读次数:
231
题目来源于力扣(LeetCode) 一、题目 1287. 有序数组中出现次数超过25%的元素 题目相关标签:数组 提示: 1 <= arr.length <= 10^4 0 <= arr[i] <= 10^5 二、解题思路 2.1 线性扫描 据题意:数组中恰好有一个整数,它的出现次数超过数组元素总数 ...
分类:
编程语言 时间:
2020-06-21 20:08:15
阅读次数:
66