上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 39 下一页
摘要: # elasticsearch中的三种模式 # 第一种动态模式 默认就是dynamic模式 PUT mapping { "mappings": { "properties": { "name":{ "type": "keyword" }, "age":{ "type": "long" } } } } 阅读全文
posted @ 2021-12-04 22:03 竹石2020 阅读(214) 评论(0) 推荐(0) 编辑
摘要: elasticsearch中的聚合函数 elasticsearch中的聚合函数求出平均年龄 计算出蜀国人物的平均年龄 GET test1/_search { "query": { "match": { "location.keyword": "蜀国" } }, "aggs": { "age_avg" 阅读全文
posted @ 2021-12-04 22:01 竹石2020 阅读(39) 评论(0) 推荐(0) 编辑
摘要: elasticsearch中的布尔查询 例如查询年龄是25岁,输入王者荣耀的英雄 GET test1/_search { "query": { "bool": { "must": [ { "match": { "age": "25" } }, { "match": { "location": "王者 阅读全文
posted @ 2021-12-04 13:44 竹石2020 阅读(49) 评论(0) 推荐(0) 编辑
摘要: elasticsearch的查询方法 创建索引 PUT test1 添加数据,可以指定id POST test1/_doc/2 { "name":"刘备", "age":54, "location":"蜀国" } 查询操作两种方法 · 第一种 GET test1/_search?q=location 阅读全文
posted @ 2021-12-04 11:32 竹石2020 阅读(203) 评论(0) 推荐(0) 编辑
摘要: vue3生命周期钩子,少了两个beforcreated和created函数,这两个函数直接变成了setup() 阅读全文
posted @ 2021-11-29 16:35 竹石2020 阅读(173) 评论(0) 推荐(0) 编辑
摘要: vue3 中的计算属性 监视属性 可以监视一个,也可以监视多个 watcheffect监视属性有点像computed方法,只要在watcheffect需要用到的数据发生变化就会重新调用。 阅读全文
posted @ 2021-11-28 15:13 竹石2020 阅读(76) 评论(0) 推荐(0) 编辑
摘要: setup setup的执行时机 阅读全文
posted @ 2021-11-27 21:13 竹石2020 阅读(7) 评论(0) 推荐(0) 编辑
摘要: ###自定义过滤器 模糊查询 忽略大小写 阅读全文
posted @ 2021-11-17 23:11 竹石2020 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 首先是view ##然后是ApiView继承自原始的django的view, ####其中对原始的django中的request和response 进行了封装 然后是通用视图genericapiview 这个是通用视图 是对 接下来就是五个扩展类 这五个视图的封装 #ListmodelView 这个 阅读全文
posted @ 2021-11-17 22:09 竹石2020 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 组件内的守卫 进入组件前和离开组件时的守卫 路由的两种模式 hash history 阅读全文
posted @ 2021-11-13 22:04 竹石2020 阅读(92) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 39 下一页