1. 水平居中(margin: auto;)子父元素宽度固定,子元素上设置 margin: auto; 子元素不能设置浮动,否则居中失效。 #div1{ width: 300px; height: 300px; border: 1px solid red; } #div1 p { width: 10 ...
分类:
Web程序 时间:
2021-05-24 15:08:56
阅读次数:
0
子查询 记录 [3,+2) 从0编号,第三行记录序号为 2limit offset 子查询 子查询查出第三行记录的dept_no 导表sql -- MySQL dump 10.13 Distrib 8.0.22, for Win64 (x86_64) -- -- Host: localhost Da ...
分类:
数据库 时间:
2021-05-24 14:29:51
阅读次数:
0
简介 使用了C++自带的实现deque 和 unordered_map code class LRUCache { public: unordered_map<int, bool> map; unordered_map<int, int> mapV; deque<int> q; int capaci ...
分类:
其他好文 时间:
2021-05-24 13:58:51
阅读次数:
0
简介 使用感觉类似动态规划的思路进行计算 code class Solution { public: int maxProfit(vector<int>& prices) { int inf = 1e9; int minPrice = inf; int maxProfit = 0; for(auto ...
分类:
其他好文 时间:
2021-05-24 13:09:51
阅读次数:
0
如果在程序中禁用了SWD调试接口,即将SWD所用的IO口当作普通的IO口使用时,下载完第一次程序后,如果从flash启动(BOOT0==0)则无法继续使用SWD接口重新下载程序或者调试; 此时可能会出现如下提示: Connecting … Connecting via USB to J-Link d ...
分类:
其他好文 时间:
2021-05-24 12:33:42
阅读次数:
0
wxml: <!--导航条--><view class="navbar"> <text wx:for="{{navbar}}" data-idx="{{index}}" class="item {{currentTab==index ? 'active' : ''}}" wx:key="unique ...
分类:
微信 时间:
2021-05-24 12:04:59
阅读次数:
0
环境 kubernetes 1.20.4 Spring Boot 2.5.0-M3 目标 Service 的 externalIPs 可以设置一个外部的 IP 地址,并且将流量导入到集群内部。 示例 Deploy.yaml apiVersion: apps/v1 kind: Deployment m ...
分类:
其他好文 时间:
2021-05-24 11:56:04
阅读次数:
0
尝试做 ingress 实验,发现被畜生的墙拦住下载不了 mandatory.yaml & service-nodeport.yaml。 https://raw.githubusercontent.com/kubernetes/ingress-nginx/nginx-0.30.0/deploy/st ...
分类:
其他好文 时间:
2021-05-24 11:09:02
阅读次数:
0
? 站点名称一点要和服务器的站点名称一样 使用Web Deploy进行远程部署 Web Deploy支持直接从本地Visual Studio的工程文件部署网站到远程服务器,部署的过程中可以对比哪些文件变化了需要拷贝,而不是一股脑的全部拷贝,效率和准确性会更好。 部署的过程主要要注意以下几点: 远程服 ...
分类:
其他好文 时间:
2021-05-24 09:39:22
阅读次数:
0
Vue页面template <template> <div> <canvas style="width: 80%!important;height: auto!important;" id="canvas"></canvas> <br/>{{charId}} </div> </template> V ...
分类:
Web程序 时间:
2021-05-24 09:24:28
阅读次数:
0