一、listeners 2.4.0 新增 这两个是不常用属性,但是高级用法很常见; 1.场景如果父传子有很多值那么在子组件需要定义多个解决attrs获取子传父中未在 props 定义的值 // 父组件<home title="这是标题" width="80" height="80" imgUrl=" ...
分类:
其他好文 时间:
2020-07-10 13:30:59
阅读次数:
59
正则详细教程系列可以看此链接的文章哦 https://www.cnblogs.com/poloyy/category/1796055.html 前言 学过正则表达式的童鞋肯定都知道贪婪模式和非贪婪模式,这是个重难点! 今天我们就来仔细讲讲它们的区别和具体实例 为什么会有贪婪与非贪婪模式? 首先,贪婪 ...
分类:
其他好文 时间:
2020-07-10 11:38:58
阅读次数:
123
JSON (JavaScript Object Notation) 是一种轻量级的数据交换格式。它基于ECMAScript的一个子集。 Python3 中可以使用 json 模块来对 JSON 数据进行编解码,它包含了两个函数: json.dumps(): 对数据进行编码。 json.loads() ...
分类:
编程语言 时间:
2020-07-10 11:35:51
阅读次数:
59
常见快捷输入符:```js dsajdhjas const = 121 ``` ```css .class { height:10px; } ``` ```html <div>wjedewdhjewhsjh</div> ``` :::tip dwjjwhdj ::: :::warning adjsj ...
分类:
其他好文 时间:
2020-07-10 11:34:17
阅读次数:
113
create table Book ( id int primary key identity, name varchar(20), date datetime, remark varchar(50) ) --循环执行插入10000条数据 declare @id int declare @name ...
分类:
数据库 时间:
2020-07-10 11:33:54
阅读次数:
87
window.open 弹出新窗口的命令 height 窗口的高度 width 窗口的宽度 top 窗口距离屏幕最上方的像素值 left 窗口距离屏幕最左侧的像素值 toolbar 是否县级市工具栏 menubar/scrollbars 表示菜单栏和滚动栏 resizble 是否允许改变窗口大小 l ...
分类:
其他好文 时间:
2020-07-10 09:19:31
阅读次数:
66
css属性 <style> div{ border: 1px solid red; width: 100px; } .div1{ width: 100px; height: 100px; /*外边距*/ /* margin: 50px; */ } .div2{ width: 200px; heigh ...
分类:
Web程序 时间:
2020-07-10 00:42:13
阅读次数:
81
css属性 <style> p{ color: #FF0000; font-size: 30px; text-align: center; line-height: 200px; /* border 边框 */ border: 1px solid red; } div{ border: 1px so ...
分类:
Web程序 时间:
2020-07-10 00:35:28
阅读次数:
90
1.激活函数 1 #激活函数 2 z1=torch.linspace(-100,100,10) 3 print(z1) #tensor([-100.0000, -77.7778, -55.5556, -33.3333, -11.1111, 11.1111, 33.3333, 55.5556, 77. ...
分类:
其他好文 时间:
2020-07-10 00:23:25
阅读次数:
109
暴力解法很容易: /** * @Author Niuxy * @Date 2020/7/9 9:49 下午 * @Description 暴力解法 */ public final int maxArea0(int[] height) { int max = 0; for (int i = 0; i ...
分类:
编程语言 时间:
2020-07-10 00:14:45
阅读次数:
71