目录结构 引用路径 <link rel="stylesheet" href="../static/layui/css/layui.css" type="text/css"/> application.properties spring.mvc.static-path-pattern=/static/ ...
分类:
编程语言 时间:
2021-02-17 14:04:34
阅读次数:
0
Django批量导入数据库-bulk_create() if request.method == 'POST': text_list=request.POST.getlist('text') pwd_list = request.POST.getlist('pwd') datas = [] for ...
分类:
数据库 时间:
2021-02-16 12:34:27
阅读次数:
0
边框案例: package cn.dzz.swing; import javax.swing.*; import javax.swing.border.*; import java.awt.*; public class Demo02 { JFrame jFrame = new JFrame("边框 ...
分类:
编程语言 时间:
2021-02-16 12:16:53
阅读次数:
0
题意: 给定长度为 \(n\) 的序列 \(x\)。 求 \(\sum^{n}_{i=1} \sum^{n}_{j=1} \sum^{n}_{k=1} (x_{i}\ \& \ x_{j})\times (x_{j}\ |\ x_{k})\text{}\) 想法: 首先进行化简: . \(\sum^ ...
分类:
其他好文 时间:
2021-02-16 12:13:36
阅读次数:
0
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:
其他好文 时间:
2021-02-15 12:42:07
阅读次数:
0
使用css3的flex模型实现一个居中布局 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8" /> 5 <title>flex居中布局</title> 6 <style type="text/css"> 7 html, 8 bod ...
分类:
Web程序 时间:
2021-02-15 12:24:42
阅读次数:
0
\(\text{原题链接}\) \(\text{题目大意}\) 初始有一个长度为 \(n\) 的序列 \(a\),初始全 \(0\)。 共 \(m\) 次修改,每次修改 \((l,r,v)\),让 \(a_i = \max(a_i, v), (l\leq i\leq r)\)。求出所有操作后的 \( ...
分类:
其他好文 时间:
2021-02-15 12:15:44
阅读次数:
0
前端分页: element-UI分页组件 <!-- 分页 --> <el-pagination :current-page="page" :page-size="size" :total="total" style="padding: 30px 0; text-align: center;" lay ...
分类:
其他好文 时间:
2021-02-15 12:11:29
阅读次数:
0
一、引入easyexcel依赖 <!--easyExcel依赖--> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> </dependency> <dependency> <groupId>org ...
分类:
其他好文 时间:
2021-02-15 12:10:41
阅读次数:
0
页面重定项 例:将文本框内容传递至第二个页面: Response.Redirect("Login.aspx?name=" + txtName.Text.ToString()); 获取传过来的信息: if (Request.QueryString["name"] != null) { txtName. ...
分类:
其他好文 时间:
2021-02-15 12:04:51
阅读次数:
0