上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: 函数 //模板 func 函数名(参数1,……)(返回值1,……){ doSomething } //例子 func PrintInt(a int) int { fmt.Println(a) return 0 } 方法 //模板 func (主人名 类型)方法名(参数列表)(返回值列表){ doSo 阅读全文
posted @ 2021-07-16 15:21 小白小白小白小白 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 1. MiniProgramErrorU.createEvent is not a functionTypeError: U.createEvent is not a function 遇到的场景是我想调wx.openLocation 调用的参数latitude,longitude,是由云数据库获取 阅读全文
posted @ 2021-06-16 13:47 小白小白小白小白 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: 20210519记录 使用内网穿透工具 访问vue网页显示 Invalid Host header 原因是新版webpack-dev-server出于安全考虑,默认检查hostname 1.关闭host检查 在build目录下的webpack.dev.conf.js文件,devServer下添加di 阅读全文
posted @ 2021-05-19 16:53 小白小白小白小白 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 1.SQL变量类型必须与表字段类型一致【强制】 2.SQL如要使用索引 过滤条件应禁止应用函数或计算【强制】 反例 to_char(deal_time,'yyyy-mm-dd')=:B1 deal_time +1 >:B1 正例 deal_time between to_date(:B1,'yyyy 阅读全文
posted @ 2021-05-08 11:29 小白小白小白小白 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 切片 取一个list或tuple的部分元素 如取前3元素 >>> L = ['Michael', 'Sarah', 'Tracy', 'Bob', 'Jack'] L[0] L[1]或循环取比较麻烦 切片取 >>> L[0:3] //取前3 >>> L[:3] //取前3 >>> L[1:3] // 阅读全文
posted @ 2021-04-23 16:40 小白小白小白小白 阅读(49) 评论(0) 推荐(0) 编辑
摘要: python入门学习 版本3.8.8 https://www.liaoxuefeng.com/wiki/1016959663602400 运行 win中cmd直接跑 输入 python print('hello') 或新建 xx.py 中写print('hello') cmd中输入python xx 阅读全文
posted @ 2021-04-22 11:45 小白小白小白小白 阅读(104) 评论(0) 推荐(0) 编辑
摘要: java操作es有2种方式: 1.通过9300端口 tcp ransport-api.jar 但不能适配版本 不建议使用 2.通过9200端口 http Elasticsearch-Rest-Client 官方restclient 建议使用 导入依赖 //导入依赖 <dependency> <gro 阅读全文
posted @ 2021-04-13 16:01 小白小白小白小白 阅读(3454) 评论(0) 推荐(0) 编辑
摘要: es 自带分词器_analyze 但是分词器不支持中文 如‘中文’会被默认分割成‘中’‘文’2个词 POST _analyze { "analyzer": "standard", "text": "The 2 Brown-Foxes bone."//定义的分词 空格隔开 } 因此需要安装插件ik分词 阅读全文
posted @ 2021-04-12 02:20 小白小白小白小白 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1.批量操作 _bulk POST /customer/external/_bulk {"index":{"_id":3}} {"name":"John Doe3"} {"create":{"_id":4}} {"name":"John Doe3"} //data每2个json绑定数据 第1json 阅读全文
posted @ 2021-04-11 23:04 小白小白小白小白 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 数组 定义数组 如: var ar[4] int ar[0] =2 初始化 如: var ar1 = [4] int{1,2,3,4} var arr2 = [4] int{1:2,3:2} //下标1值2 下标3值为2 var arr3 = [...]int{1, 2, 3, 4} //[]中用. 阅读全文
posted @ 2021-04-08 14:17 小白小白小白小白 阅读(129) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页