您的位置:首页 > 教育 > 锐评 > 网页公正流程_专业的移动网站建设公司_哪些行业适合做网络推广_seo服务收费

网页公正流程_专业的移动网站建设公司_哪些行业适合做网络推广_seo服务收费

2025/4/4 12:40:00 来源:https://blog.csdn.net/qq_41914181/article/details/146986211  浏览:    关键词:网页公正流程_专业的移动网站建设公司_哪些行业适合做网络推广_seo服务收费
网页公正流程_专业的移动网站建设公司_哪些行业适合做网络推广_seo服务收费

TypeScript 元数据操作 API 及示例

1. 配置环境

安装依赖

npm install reflect-metadata

tsconfig.json 配置

{"compilerOptions": {"experimentalDecorators": true,"emitDecoratorMetadata": true,"target": "ES6"}
}

2. 元数据操作 API

  • Reflect.defineMetadata(key, value, target, propertyKey?)
  • Reflect.getMetadata(key, target, propertyKey?)
  • Reflect.hasMetadata(key, target, propertyKey?)
  • Reflect.getMetadataKeys(target, propertyKey?)

3. 内置元数据键

  • design:type:属性/方法的类型
  • design:paramtypes:方法参数的类型
  • design:returntype:方法返回值类型

4. 示例代码

示例 1:自定义装饰器

import "reflect-metadata";function LogInfo(message: string) {return function (target: any, propertyKey: string, descriptor: PropertyDescriptor) {Reflect.defineMetadata("log-message", message, target, propertyKey);};
}class UserService {@LogInfo("Fetching user data")getUser(id: number) {return { id, name: "Alice" };}
}const message = Reflect.getMetadata("log-message", UserService.prototype, "getUser");
console.log(message); // 输出: "Fetching user data"

示例 2:内置元数据推断

import "reflect-metadata";class Example {@Reflect.metadata("custom-prop", true)public name: string = "";greet(@Reflect.metadata("required", true) name: string): string {return `Hello, ${name}`;}
}const propType = Reflect.getMetadata("design:type", Example.prototype, "name");
console.log(propType); // 输出: [Function: String]const paramTypes = Reflect.getMetadata("design:paramtypes", Example.prototype, "greet");
console.log(paramTypes); // 输出: [ [Function: String] ]

示例 3:类级别元数据

import "reflect-metadata";@Reflect.metadata("api-version", "1.0.0")
class ApiController {@Reflect.metadata("http-method", "GET")public fetchData() {}
}const apiVersion = Reflect.getMetadata("api-version", ApiController);
console.log(apiVersion); // 输出: "1.0.0"const httpMethod = Reflect.getMetadata("http-method", ApiController.prototype, "fetchData");
console.log(httpMethod); // 输出: "GET"

5. 应用场景

  • 依赖注入 (DI)
  • 序列化/验证
  • Web 框架路由
  • ORM 映射

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com