-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZodTest.ts
89 lines (75 loc) · 2.15 KB
/
ZodTest.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import {z} from "zod";
// 定义模式Schema
const userSchema = z.object({
name: z.string(),
age: z.number().int().positive(),
email: z.string().email(),
});
// 测试数据
const testValidData = () => {
const userData = {
name: "Alice",
age: 25,
email: "[email protected]",
};
// 用schema验证对象
const result = userSchema.parse(userData); // 验证通过时返回数据
console.log("验证成功:", result);
};
const testInvalidData = () => {
try {
userSchema.parse({
name: "Bob",
age: -5,
email: "not_an_email",
});
} catch (err) {
if (err instanceof z.ZodError) {
console.error("验证失败:", err.errors); // 输出错误信息
}
}
};
const testInvalidDataSafe = () => {
const userData = {
name: "Bob",
age: -5,
email: "not_an_email",
}
// 用schema安全的验证。不会抛出zodError
const safeParse = userSchema.safeParse(userData);
if (!safeParse.success) {
console.log("验证失败-安全的:", safeParse.error.issues)
}
};
// 调用测试函数
testValidData();
testInvalidData();
testInvalidDataSafe()
// 定义 Zod 模式
const userSchema2 = z.object({
name: z.string(),
age: z.number().int().positive(),
email: z.string().email(),
isActive: z.boolean().optional(), // 可选字段
});
// z.infer 的主要作用是静态推断类型,在`编译阶段`防止类型错误。
type User = z.infer<typeof userSchema2>;
// 示例:在 TypeScript 中验证类型
const validUser: User = {
name: "Alice",
age: 30,
email: "[email protected]",
isActive: true, // 这是可选的,可以省略
};
const invalidUser: User = {
name: "Bob",
age: 25,
email: "bob@@@", // 错误:无效邮箱格式
};
const result = userSchema2.safeParse(invalidUser);
console.log(result.error?.issues);
console.log("Valid user:", validUser);
console.log("Invalid user:", invalidUser); // 这行代码会导致编译报错
// 问gpt // 使用 z.infer 推断类型
// type Product = z.infer<typeof productSchema>;
// 那这行的作用是啥