| 12345678910111213 |
- // 简单测试schema语法
- const schema = {
- user: {
- id: 1,
- username: "wx_1764673897616_aeevhi",
- phone: null,
- openid: "ov95P19u38KzJUwNymZXriMiXqoQ"
- }
- };
- console.log("测试数据:", JSON.stringify(schema, null, 2));
- console.log("user.openid 存在:", schema.user.openid !== undefined);
- console.log("user.openid 值:", schema.user.openid);
|