默认插槽(匿名插槽) father.vue 因为父组件在里面写了html模板,那么子组件的匿名插槽这块模板就是下面这样。也就是说,子组件的匿名插槽被使用了,是被下面这块模板使用了。 child.vue 具名插槽 father.vue child.vue ...
分类:
其他好文 时间:
2020-01-11 15:12:54
阅读次数:
40
一.issubclass函数介绍 issubclass函数主要用于判断一个对象是否为另外一个对象的子类,语法如下: issubclass(child_class,father_class) 参数: child_class — 类对象; father_class — 类对象; 返回值 — 如果chil ...
分类:
编程语言 时间:
2020-01-11 00:22:05
阅读次数:
106
到虚拟化技术,我们首先想到的一定是 Docker,经过四年的快速发展 Docker 已经成为了很多公司的标配,也不再是一个只能在开发阶段使用的玩具了。作为在生产环境中广泛应用的产品,Docker 有着非常成熟的社区以及大量的使用者,代码库中的内容也变得非常庞大。 ...
分类:
其他好文 时间:
2020-01-10 15:24:52
阅读次数:
57
用户鼠标移到一级分类,去查询自己的二级分类。 这些的father_id是11 也就是蛋糕的三级分类。 写sql 先写sql,需要用到自链接,我们使用的通用mapper是做不到多表关联查询的。所以我们要写自定义的sql语句 自己关联自己,f代表father 。c代表child where条件,指定fa ...
分类:
其他好文 时间:
2020-01-08 23:10:47
阅读次数:
95
F查询 from django.db.models import F,Q # 1.查询库存数大于卖出数的书籍 res = models.Book.objects.filter(kucun__gt=F('maichu')) print(res) #<QuerySet [<Book: Book obje ...
分类:
其他好文 时间:
2020-01-08 23:03:52
阅读次数:
83
用tar命令解压文件的时候出错了,信息如下: tar -jvxf jemalloc-3.6.0.tar.bz2 ./nginx/ tar (child): bzip2: Cannot exec: No such file or directorytar (child): Error is not r ...
分类:
其他好文 时间:
2020-01-08 12:31:06
阅读次数:
93
一、新增选择器 结构伪类选择器 :root——根选择器 :nth child(an+b)——子元素选择器。下标是a的倍数,偏移b个的子元素,n从0计数。odd奇数,even偶数。 :nth last child(n)——倒数第n个 :last child——最后一个 :only child——属于其 ...
分类:
Web程序 时间:
2020-01-07 19:39:02
阅读次数:
106
/// <summary> /// XML帮助类 /// </summary> public class XMLHelper { public XmlDocument xmlDoc { get; set; } public XMLHelper() { this.xmlDoc = new XmlDoc ...
分类:
其他好文 时间:
2020-01-07 18:21:54
阅读次数:
63
语法: 下面就把CSS3标准中nth-child()用法大致介绍给大家: CSS3伪类选择器:nth-child() 简单的归纳下nth-child()的几种用法。 第一种:简单数字序号写法 :nth-child(number) 直接匹配第number个元素。参数number必须为大于0的整数。 例 ...
分类:
Web程序 时间:
2020-01-07 13:14:22
阅读次数:
1000
html css 这里把高度都给限制死了。 可以换一个思路,通过设置margin top来处理竖向空间。 ...
分类:
其他好文 时间:
2020-01-06 19:18:21
阅读次数:
110