码迷,mamicode.com
首页 >  
搜索关键字:orm    ( 15737个结果
关于Cell中的各种值的类型判断
switch (cell.getCellType()){ case Cell.CELL_TYPE_NUMERIC: //数字 cellValue = stringDateProcess(cell); break; case Cell.CELL_TYPE_STRING: //字符串 cellValue ...
分类:其他好文   时间:2018-08-13 12:18:04    阅读次数:935
字符串格式化
1 #coding=utf-8 2 ''' 3 字符串格式化 4 ''' 5 6 #~~~~~~替换元素作用 7 #默认顺序替换 8 print('hello,{},{},{}'.format('z','c','zc')) 9 10 #使用关键字进行对应变量的替换 11 print('hello,{... ...
分类:其他好文   时间:2018-08-13 12:05:03    阅读次数:191
如何使用Rancher 2.0在Kubernetes集群上部署Istio
Istio是Service mesh的一个明星项目。它提供一种简单的方式来建立已部署服务网络,具备负载均衡、服务间认证、监控等功能,且不需要改动任何服务代码。随着微服务出现,微服务的连接、管理和监控成为难题。尽管K8s 可以处理多个容器的工作负载,但当涉及更复杂的需求时,需要像Istio这样的微服务网格。?本文将step by step 教你如何使用Rancher部署Istio
分类:Web程序   时间:2018-08-13 10:44:02    阅读次数:330
react native使用 mobx , can't find variable:Symbol
原因是因为 mobx的版本用的最新版本..用到了 Symbol部分es6的api特性. 解决问题办法 1. 把mobx降版本到 4.3.1 . mobx-react降版本到 5.1.0 即可. 或者 2. 在.babelrc配置文件 增加 ployfill插件 "babel-plugin-trans ...
分类:其他好文   时间:2018-08-13 00:40:55    阅读次数:362
Struts2之上传下载
单文件上传 上传页面 struts.xml配置 Action类 成功接收页面 ...
分类:Web程序   时间:2018-08-12 23:36:07    阅读次数:243
题目:命令chkconfig;开机自启动服务
开机自启动的2种配置方法,chkconfig管理开机自启动服务,配置文件 /etc/rc.local
分类:其他好文   时间:2018-08-12 20:02:20    阅读次数:149
webpack4构建react脚手架
`create-react-app` 脚手架还没有更新到webpack4,但是猛然间发现webpack4已经到 **v4.12.0** 版本了!!!慌得不行,正好端午有空所以研究了一波,自己搭建了一个简单的react脚手架。实现本地代理,cssModule,css预处理,postCss,文件压缩等常... ...
分类:Web程序   时间:2018-08-12 18:45:59    阅读次数:267
php编译常见错误
php PHP编译安装时常见错误解决办法[转]This article is post on https://coderwall.com/p/ggmpfaconfigure: error: xslt-config not found. Please reinstall the libxslt >= ...
分类:Web程序   时间:2018-08-12 15:49:39    阅读次数:160
Java 如何将String转化为Int
在 Java 中要将 String 类型转化为 int 类型时,需要使用 Integer 类中的 parseInt() 方法或者 valueOf() 方法进行转换. 例1: 1 2 3 4 5 6 String str = "123"; try { int a = Integer.parseInt( ...
分类:编程语言   时间:2018-08-12 14:08:39    阅读次数:124
基于pandas python的美团某商家的评论销售数据分析(可视化续)
73 17400 Name: avgPrice, dtype: int64 False 14402 True 2998 Name: anonymous, dtype: int64 0 2018 05 09 22:21:48 1 2018 06 01 19:41:31 2 2018 04 04 11: ...
分类:编程语言   时间:2018-08-12 00:29:14    阅读次数:169
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!