泛型的理解
官方文档里是这么写的
In languages like C# and Java, one of the main tools in the toolbox for creating reusable components is generics, that is, being able to create a component that can work over a variety of types rather than a single one. This allows users to consume these components and use their own types.
我的理解是为了能够更好、更灵活地约束类型,出现了泛型,一种类似于变量,但用于类型的工具。它能让我们在使用时不像使用 any 那样不清楚具体是什么类型,但它可以像变量一样可以接收不同的类型。
泛型的应用
-
简单应用:Type作为一个类型变量,去进行使用,约束了 identity 函数传入和返回类型(必须一致)
function identity<Type>(arg: Type): Type {return arg; }
-
泛型接口:将 identity 函数的类型抽取出来放在接口里面,然后给 myIdentity 用
interface GenericIdentityFn {<Type>(arg: Type): Type; }function identity<Type>(arg: Type): Type {return arg; }let myIdentity: GenericIdentityFn = identity;
CORS 的请求头
- Access-Control-Allow-Origin(必选)
- Access-Control-Allow-Methods(必选)
- Access-Control-Allow-Headers
- Access-Control-Allow-Credentials
- Access-Control-Max-Age
CORS 预检请求
CORS 预检请求是浏览器对服务器是否允许跨域请求的试探的一种机制。当浏览器发出跨域请求时,会先发出一个 Options 请求,也就是预检请求,看服务器是否能够进行跨域请求。服务器会在响应头里设置 cors 的头字段,也就是上面5个头字段。
CORS 预检请求的作用是保证实际请求之前,浏览器与服务器能够进行安全的通信。
Mysql 和 MongoDB 的区别
- Mysql 是关系型数据库,MongoDB 是非关系型数据库
- 使用场景的区别
- Mysql
- 不需要频繁操作
- 有安全性要求
- MongoDB
- 如果数据量大
- 读写操作频繁
- 数据价值较低,对事务要求不高
- Mysql