编辑
2023-06-29
前端
00

报错情况

js
// 报错信息:Cannot read properties of undefined (reading 'writeText') navigator.clipboard.writeText(txt)

报错原因

浏览器禁用了非安全域的 navigator.clipboard 对象,http属于非安全域,在 http 环境下调用会出现报错

安全域包括

  • 本地访问, 如 127.0.0.1 或 localhost
  • 开启TLS安全认证的地址,如 https 协议的地址
编辑
2023-06-15
安装与配置
00

Windows及mac 升级

Windows及mac使用的 docker desktop 自带 docker-compose 工具。

只需要升级docker desktop 至最新版,就会安装 docker-compose v2

编辑
2023-06-14
前端
00

函数

我们之前所涉及到的都是值的标注

函数的标注 会在 值的标注 基础上,

编辑
2023-06-01
前端
00

为什么需要字面量类型、联合类型、枚举类型

假设我们有一个接口结构,描述了响应的消息结构

ts
interface Res { code: number; status: string; data: any; }

大多数情况下code 与 status 实际值会来自于一组确定值的集合

比如:

  • code 可能是 0 / 200 / 10000
  • status 可能是 ‘success’ / "failure"

但是上面的类型标注太宽泛了,我们既不能在访问 code 时获得精确的提示,也失去了 TypeScript 类型即文档的功能。

这时就需要更精确的字面量类型、联合类型、枚举类型,提供精确地取值标注

例如,我们可以使用字面量类型、联合类型将上面的例子标注的更清楚

ts
interface Res { code: 10000 | 10001 | 50000; status: "success" | "failure"; data: any; }
编辑
2023-05-29
前端
00

基础数据类型标注

原始类型的类型标注

JavaScript的内置原始类型,在 TypeScript 中它们都有对应的类型注解

ts
const name: string = 'linbudu'; const age: number = 24; const male: boolean = false; const undef: undefined = undefined; const nul: null = null; const obj: object = { name, age, male }; const bigintVar1: bigint = 9007199254740991n; const bigintVar2: bigint = BigInt(9007199254740991); const symbolVar: symbol = Symbol('unique');