摘要:
net core net core 3.1 知识累积 HttpClientFactory 是 HttpClient 的正确使用方式 linux与windows路径字符串中分隔目录级别 知识重点 asp.net core 3.1 CreateDefaultBuilder默认启动解析 asp.net c 阅读全文
摘要:
Redis Redis in .NET Core 入门 Redis实战 - 1.String和计数器 Redis实战 - 2.list、set和Sorted Set Redis实战 - 4.Key Redis实战 - 3.Hash Redis实战 - 5事务:multi、exec和watch 其他的 阅读全文
摘要:
1 HTML 1.1 HTML5 HTML5 – 1.基础 HTML5 – 2.新元素 HTML5 – 3.加强版ol HTML5 – 4.canvas 1.2 Emmet HTML快速结构生成 Emmet Cheat Sheet(Sublime编辑) 2 CSS 2.1 CSS3 CSS3–1.c 阅读全文
摘要:
![](https://img2018.cnblogs.com/blog/196558/201905/196558-20190505230709345-39565591.png) 官网:https://knockoutjs.com/documentation/introduction.html Kn 阅读全文
摘要:
方便查阅: # C# 基础 # [decimal 去掉小数点后的无效0](https://www.cnblogs.com/tangge/p/14682209.html) [C# 6.0\C#7.0 新语法特性](https://www.cnblogs.com/tangge/p/12389265.ht 阅读全文
摘要:
Elastic search 原理与实现 文档字段 1 字段索引 默认情况下,只有text类型的字段会保存文档ID、词频、词序以外,其余类型字段均只保存文档ID。用户可以在映射字段时通过index_option参数来设置,它的可选值为 docs、freqs、positions、offsets,编入索 阅读全文
摘要:
5.4 动画 5.4.1 animation CSS animation 属性是 animation-name,animation-duration, animation-timing-function,animation-delay,animation-iteration-count,animat 阅读全文
摘要:
(1)模板驱动表单 参考: 构建模板驱动表单 简单表单 ngForm 固定的,需要提交的值 ngModel <form #sub="ngForm" (submit)="onSubmit(sub)"> <input type="text" name="username" ngModel> <in 阅读全文
摘要:
modal NgbActiveModal 链接 Class A reference to the currently opened (active) modal. 对当前打开的(active)modal 的引用,(就是现实的内容)。 Instances of this class can be in 阅读全文
摘要:
模块 @NgModule 的设计意图 静态的元数据 (declarations) 运行时的元数据 (providers) 组合与分组 (imports 和 exports) 《angular从零到一》说的简单些: NgModule是一个装饰器函数,它接收一个用来描述模块属性的元数据对象。其中最重要的 阅读全文
摘要:
基础 Color Filters are defined by a selector and a pattern in the general form selector: pattern. The following selectors (= filter types) are available 阅读全文
摘要:
行存储和列存储 行存储 场景:数据维护,数据检索 列存储 场景:数据分析 行存储和列存储 行存储 场景:数据维护,数据检索 列存储 场景:数据分析 索引的了解 聚集索引 聚集索引中,叶节点包含基础表的数据页。 数据链内的页和行将按聚集索引键值进行排序。 主键通常是聚集索引,但可以不是聚集索引。 非聚 阅读全文
摘要:
布局 内容 公共样式 1.基础样式 1.1 Display 显示 .d-* .d-* (例如,.d-none): 根据屏幕尺寸显示或隐藏元素。 .d-none: 在给定屏幕尺寸下隐藏元素。 .d-block: 在给定屏幕尺寸下显示块级元素。 .d-inline: 在给定屏幕尺寸下将元素设置为行内元素 阅读全文
摘要:
function log(msg, color) { color = color || "black"; bgc = "White"; switch (color) { case "success": color = "Green"; bgc = "LimeGreen"; break; case " 阅读全文