码迷,mamicode.com
首页 >  
搜索关键字:hone    ( 1079个结果
Redis的数据结构以及使用
关于reids的使用,可以封装到工具类进行调用: Redis的工具类:JedisAdapter public Transaction multi(Jedis jedis) { try { return jedis.multi(); } catch (Exception e) { logger.err ...
分类:其他好文   时间:2019-03-13 18:24:13    阅读次数:197
ios的framework合并
# 运行此脚本前 # 先编译一遍工程 确保正常运行 没有报错 # 作为Xcode Aggregate运行 # file-->new target-->cross-platform-->Aggregate #!/bin/sh UNIVERSAL_OUTPUTFOLDER=${BUILD_DIR}/${ ...
分类:移动开发   时间:2019-03-11 10:23:09    阅读次数:448
使用JS判断不同的终端设备
const ua: string = window.navigator.userAgent; const isWeixin: boolean = /MicroMessenger/i.test(ua); const isAndroid: boolean = /Android/i.test(ua); c... ...
分类:Web程序   时间:2019-03-08 16:53:56    阅读次数:277
46 What Is Real Happiness ? 什么是真正的幸福 ?
46 What Is Real Happiness ? 什么是真正的幸福 ? ①The way people hold to the belief that a fun-filled, pain-free life equals happiness actually reduces their ch... ...
分类:移动开发   时间:2019-03-07 01:14:29    阅读次数:263
java递归查找最后一条记录
public List<Operator> sx(List<Operator> list) { List<Operator> sxList = new ArrayList<Operator>(); for (int i = 0; i < list.size(); i++) { long time = ...
分类:编程语言   时间:2019-03-04 14:33:25    阅读次数:198
vue-resource 中 get / post / jsonp 三种请求方式的异同
let url = 'http://www.phonegap100.com/appapi.php?a=getPortalList&catid=20&page=2';let params ={ params: { username: 'zhangSan', pwd: '123456' } } // g ...
分类:Web程序   时间:2019-03-02 00:58:34    阅读次数:222
2019-3-1
伪静态: .html 'url(^page/(?P<id>\d+).html/$',views.page,name='pages') /page/1|2|3.html/ | {% url pages 1|2|3 %} 3.request对象 --method,GET,POST --FILES,MET ...
分类:其他好文   时间:2019-03-01 15:32:29    阅读次数:200
xcode10不兼容问题,framework编译脚本
XCode10报错:Build/Intermediates.noindex/XCBuildData/build.db": disk I/O error 更改-scheme 为-target ...
分类:其他好文   时间:2019-02-25 18:58:41    阅读次数:448
Python MySQLdb 模块
MySQLdb 是 Python 连接 MySQL 的一个模块,常见用法如下: ...
分类:数据库   时间:2019-02-23 23:08:33    阅读次数:278
excl中将某列数据合到单个单元格
1.excl中使用PHONETIC()函数将一列数据合并到一个单元格 如下例:使用前 使用后: ...
分类:其他好文   时间:2019-02-23 10:46:28    阅读次数:166
1079条   上一页 1 ... 28 29 30 31 32 ... 108 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!