摘要:
asd 阅读全文
摘要:
TypeScript原始数据类型 原始数据类型包括:布尔值、数值、字符串、null、undefined、 Symbol、BigInt。 布尔值: let isDone: boolean = false; 数值: let decLiteral: number = 6; 字符串: let myName: 阅读全文
摘要:
一、CSS3 渐变效果 (1)CSS3 提供了 linear-gradient 属性实现背景颜色的渐变功能。首先,我们先看一下它的样式表,如下: //两个必须参数background-image: linear-gradient(orange,green);//增加一个方位background-im 阅读全文
摘要:
一、CSS 盒模型 1.元素尺寸:CSS 盒模型中最基础的就是设置一个元素的尺寸大小。有三组样式来配置一个元素的尺寸大小,样式表如下 //设置元素尺寸 div { width: 200px;height: 200px;}解释:设置元素的固定尺寸。//限制元素尺寸div {min-width: 100 阅读全文
摘要:
一、 CSS 文本样式 1.font-size p { font-size: 50px;}解释:设置文本的大小。 xx-small、x-small、small、medium、large、x-large(固定大小)xx-large、smaller、larger(设置字体相对于父元素字体的大小)数字+p 阅读全文
摘要:
一、创建 CSS 样式表有三种方式 1. 元素内嵌样式<p style="color:red;font-size:50px;">这是一段文本</p>解释:即在当前元素使用 style 属性的声明方式。 2. 文档内嵌样式<style type="text/css">p {color: blue;fo 阅读全文
摘要:
一、基本格式 <!DOCTYPE html> //文档类型声明 <html lang="zh-cn"> //表示 HTML 文档开始 <head> //包含文档元数据开始 <meta charset="utf-8"> //声明字符编码 <title>基本结构</title> //设置文档标题 </h 阅读全文
摘要:
1、MongoDB 概念解析 SQL术语/概念MongoDB术语/概念解释/说明 database database 数据库 table collection 数据库表/集合 row document 数据记录行/文档 column field 数据字段/域 index index 索引 table 阅读全文
摘要:
1、配置yum源 创建/etc/yum.repos.d/mongodb-org-4.0.repo文件,编辑内容如下: [mongodb-org-4.0] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat/$rele 阅读全文
摘要:
相关文档 1) 英文文档: https://redux.js.org/ 2) 中文文档: http://www.redux.org.cn/ 3) Github: https://github.com/reactjs/redux redux 是什么 1) redux是一个独立专门用于做状态管理的JS库 阅读全文