We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
通过装饰器针对参数GET进行拦截,如果conditions返回为True,执行自定义operation函数
type Options<I> = [conditions: (v: I) => boolean, operation: (target: Object, propertyKey: string | symbol) => void]; export interface handleDescriptor<T> { (target: Object, propertyKey: string | symbol, options: Options<T>): void; }
测试用例应该包含如下:T
The text was updated successfully, but these errors were encountered:
Martinyua
No branches or pull requests
函数描述
通过装饰器针对参数GET进行拦截,如果conditions返回为True,执行自定义operation函数
函数接口
测试用例
测试用例应该包含如下:T
The text was updated successfully, but these errors were encountered: