层次选择器 后代选择器:在某个元素后面 /*后代选择器*/ body p{ color: aqua; } 子选择器 body>h1{ color:chocolate; } 相邻兄弟选择器 /*相邻兄弟选择器:只有一个,相邻(向下)*/ .active + h2{ background: #c4fff ...
分类:
其他好文 时间:
2021-05-24 00:23:25
阅读次数:
0
7.1 Pod与controller的关系 controllers:在集群上管理和运行容器的对象。有时也称为工作负载(workload) 通过label-selector相关联,如下图所示。 Pod通过控制器实现应用的运维,如伸缩,滚动升级等 controllers:在集群上管理和运行容器的对象。有 ...
分类:
其他好文 时间:
2021-05-24 00:10:17
阅读次数:
0
passwd [选项] 登录名 -e,--expire 强制用户密码过期 这时候需要使用root账户给tel用户重新设置密码 -l,--lock 锁定指定用户密码 -u, --unlock 给指定账户解锁定 -d,--delete 将密码删除,即设置为空密码 -x, --maximum=DAYS 密 ...
分类:
其他好文 时间:
2021-05-23 23:29:20
阅读次数:
0
4.1、在命令行中使用Maven指令 1、 显示版本信息 mvn -version mvn -v 2、使用互动模式创建项目:mvn archetype:generate 3、使用非互动模式(指定参数创建项目) ? 普通项目骨架: mvn archetype:generate -DgroupId=co ...
分类:
其他好文 时间:
2021-05-03 13:19:56
阅读次数:
0
前言 本文作者阮一峰 复杂的软件必须有清晰合理的架构,否则无法开发和维护。 MVC(Model-View-Controller)是最常见的软件架构之一,业界有着广泛应用。它本身很容易理解,但是要讲清楚,它与衍生的 MVP 和 MVVM 架构的区别就不容易了。 一、MVC 视图(View):用户界面。 ...
分类:
Web程序 时间:
2021-05-03 12:59:05
阅读次数:
0
自己学习用,待补充! 对比 LNC模块,就改一下 Controller (注解要换): @Controller public class TccController { @Autowired ProducerInfoMapper producerInfoMapper; @Autowired Rest ...
分类:
其他好文 时间:
2021-05-03 12:02:17
阅读次数:
0
自己学习用,待补充! 对比 LNC模块,就改一下 Controller (注解要换): @Controller public class TccController { @Autowired ConsumerInfoMapper consumerInfoMapper; private static ...
分类:
其他好文 时间:
2021-05-03 12:01:21
阅读次数:
0
IaaS 平台构建 1.关闭防火墙,禁止开机自启 systemctl stop firewalld systemctl disable firewalld 2.设置主机名 hostnamectl set-hostname controller 设置主机名compute 3.设置selinux,per ...
分类:
其他好文 时间:
2021-04-29 12:11:43
阅读次数:
0
C#-图片上传: controller: 1 public JsonResult ExpressDeliverySign(ExpressDeliverySign_LO_IP model) 2 { 3 HttpFileCollectionBase files = Request.Files; 4 if ...
from django.http import JsonResponse from django.contrib.auth import authenticate,login,logout # 登录处理 def signin(request): # 从 HTTP POST 请求中获取用户名、密码参数 ...
分类:
其他好文 时间:
2021-04-29 11:45:13
阅读次数:
0