记录是为了更好的成长! 在项目中使用了vant的Area插件,需要进行全部匹配,vant本身没有实现,需要改造代码,方法如下: vue的methos中添加下面两个方法: 以上内容代表个人观点,仅供参考,不喜勿喷。。。 ...
分类:
其他好文 时间:
2019-07-19 21:13:16
阅读次数:
559
一、内存结构 SGA(System Global Area):由所有服务进程和后台进程共享; PGA(Program Global Area):由每个服务进程、后台进程专有;每个进程都有一个PGA。 二、SGA 包含实例的数据和控制信息,包含如下内存结构: 1)Database buffer cac ...
分类:
数据库 时间:
2019-07-15 17:24:56
阅读次数:
142
在where语句中,我们需要制定各种条件,条件的各种组合需要用到不同的关键字 一、单条件 如:select * from ticket where name='测试' 二、多条件 1、和(and) 如:select * from ticket name=’测试' and area=’北京' 2、或( ...
分类:
数据库 时间:
2019-07-10 18:58:36
阅读次数:
146
1、函数定义 def 函数名(): 函数体 2.input函数和print函数 input() 接受一个标准输入数据,返回字符串类型 print("width =", w, " height =", h, " area =", area(w, h)) 3.函数返回值 def 函数名(): 函数体 r ...
分类:
编程语言 时间:
2019-07-10 01:18:11
阅读次数:
147
Mechanics (Greek μηχανικ?) is that area of science concerned with the behaviour of physical bodies when subjected to forces or displacements, and the ... ...
分类:
其他好文 时间:
2019-07-07 12:38:17
阅读次数:
87
select id,area, sum(1) over() as 总记录数, sum(1) over(partition by id) as 分组记录数, sum(score) over() as 总计 , sum(score) over(partition by id) as 分组求和, sum( ...
分类:
其他好文 时间:
2019-07-02 10:57:40
阅读次数:
98
1.看官方文档 https://docs.python.org/3/search.html?q=os&check_keywords=yes&area=default 2.看源码 3.dir() import requests,os,randomprint(dir(random)) ...
分类:
编程语言 时间:
2019-07-01 00:49:04
阅读次数:
227
今天研究了会img的usemap属性 举个例子; <img src = "" usemap = "#name"> <map name = "name"> <area shape = "rect" coords = "" href = "" alt = ""> </map> 简单介绍一下: usema ...
分类:
其他好文 时间:
2019-06-29 22:26:36
阅读次数:
151
JVM的组成 类加载器 (classloader) 执行引擎 (execution engine) 运行时数据区域 (runtime data area) 对于Java程序员来说,在虚拟机自动内存管理机制下,不再需要像C/C++程序开发程序员这样为内一个new 操作去写对应的delete/free操 ...
分类:
编程语言 时间:
2019-06-29 00:28:58
阅读次数:
127
1. Linux Bridge网桥管理 一个网桥上添加多个虚拟机,虚拟机之间是可以相互通信的的,同时虚拟机也都可以通外网。 kvm的网桥管理可以通过brctl命令 2. VLAN LAN 表示 Local Area Network,本地局域网,通常使用 Hub 和 Switch 来连接 LAN 中的 ...
分类:
其他好文 时间:
2019-06-23 20:59:57
阅读次数:
127