什么是装饰器(decorators)
- 装饰器:装饰器是一种特殊类型的声明,它能够被附加到类声明,方法,属性或参数上,可以修改类的行为。
在TypeScript中装饰器还属于实验性语法,你必须在命令行或tsconfig.json里启用experimentalDecorators编译器选项:
命令行
tsc --target ES5 --experimentalDecorators
tsconfig.json 配置
{
"compilerOptions": {
"target": "ES5",
"experimentalDecorators": true
}
}
常见的装饰器
常见的装饰器有:类装饰器、属性装饰器、方法装饰器、参数装饰器
装饰器的写法:普通装饰器(无法传参) 、 装饰器工厂(可传参)
装饰器是过去几年中js最大的成就之一,已是Es7的标准特性之一
1.类装饰器
1.1、普通装饰器(无法传参)
// 普通装饰器(无法传参)
function logClass(params:any){
// params 就是当前类
params.prototype.apiUrl='动态扩展的属性';
params.prototype.run=function(){
console.log('我是一个run方法');
}
}
@logClass
class HttpClient{
constructor(){
}
getData(){
}
}
var http:any=new HttpClient();
console.log(http.apiUrl); // '动态扩展的属性'
http.run(); // 我是一个run方法
1.2 、 装饰器工厂(可传参)
function logClass(params:any){
return function(target:any){ // return 一个方法
console.log(target); //target 就是当前类
console.log(params); // params就是目前传参
target.prototype.apiUrl=params;
}
}
@logClass('https://www.baidu.com/')
class HttpClient{
constructor(){
}
getData(){
}
}
var http:any=new HttpClient();
console.log(http.apiUrl); // 'https://www.baidu.com/'
1.3 、 类装饰器重载构造函数
function logClass(target:any){
return class extends target{
apiUrl:any='我是修改后的数据'; // 重构属性
getData(){ // 重构方法
this.apiUrl=this.apiUrl+'----';
console.log(this.apiUrl);
}
}
}
@logClass
class HttpClient{
public apiUrl:string | undefined;
constructor(){
this.apiUrl='我是构造函数里面的apiUrl';
}
getData(){
console.log(this.apiUrl);
}
}
var http=new HttpClient();
http.getData();
2.属性装饰器
属性装饰器表达式会在运行时当作函数被调用,传入下列2个参数:
2.1、对于静态成员来说是类的构造函数,对于实例成员是类的原型对象。
2.2、成员的名字。
function logProperty(params:any){
return function(target:any,attr:any){
target[attr]=params;
}
}
class HttpClient{
@logProperty('https://www.baidu.com/') //此处调用
public url:any |undefined;
constructor(){
}
getData(){
console.log(this.url);
}
}
var http=new HttpClient();
http.getData(); // https://www.baidu.com/
3、方法装饰器
它会被应用到方法的 属性描述符上,可以用来监视,修改或者替换方法定义。
方法装饰会在运行时传入下列3个参数:
3.1、对于静态成员来说是类的构造函数,对于实例成员是类的原型对象。
3.2、成员的名字。
3.3、成员的属性描述符。
function get(params:any){
return function(target:any,methodName:any,desc:any){
//修改装饰器的方法 把装饰器方法里面传入的所有参数改为string类型
//1、保存当前的方法
var oMethod=desc.value;
//2、修改当前的方法
desc.value=function(...args:any[]){
args=args.map((value)=>{
return String(value);
})
oMethod.apply(this,args); // 合并当前新增的方法,没有这个就是直接替换此方法
}
}
}
class HttpClient{
public url:any |undefined;
constructor(){
}
@get('https://www.baidu.com/')
getData(...args:any[]){
console.log('我是getData里面的方法');
}
}
var http=new HttpClient();
http.getData(123,'xxx');
4、方法参数装饰器
参数装饰器表达式会在运行时当作函数被调用,可以使用参数装饰器为类的原型增加一些元素数据 ,传入下列3个参数:
4.1、对于静态成员来说是类的构造函数,对于实例成员是类的原型对象。
4. 2、方法的名字。
4.3、参数在函数参数列表中的索引。
function logParams(params:any){
return function(target:any,methodName:any,paramsIndex:any){
target.apiUrl=params;
}
}
class HttpClient{
public url:any |undefined;
constructor(){
}
getData(@logParams('xxxxx') uuid:any){
console.log(uuid);
}
}
var http:any = new HttpClient();
http.getData(123456);
console.log( http.apiUrl);
5.装饰器执行顺序
//属性》方法》方法参数》类
// 如果有多个同样的装饰器,它会先执行后面的
function logClass1(params:string){
return function(target:any){
console.log('类装饰器1')
}
}
function logClass2(params:string){
return function(target:any){
console.log('类装饰器2')
}
}
function logAttribute1(params?:string){
return function(target:any,attrName:any){
console.log('属性装饰器1')
}
}
function logAttribute2(params?:string){
return function(target:any,attrName:any){
console.log('属性装饰器2')
}
}
function logMethod1(params?:string){
return function(target:any,attrName:any,desc:any){
console.log('方法装饰器1')
}
}
function logMethod2(params?:string){
return function(target:any,attrName:any,desc:any){
console.log('方法装饰器2')
}
}
function logParams1(params?:string){
return function(target:any,attrName:any,desc:any){
console.log('方法参数装饰器1')
}
}
function logParams2(params?:string){
return function(target:any,attrName:any,desc:any){
console.log('方法参数装饰器2')
}
}
@logClass1('http://www.itying.com/api')
@logClass2('xxxx')
class HttpClient{
@logAttribute1()
@logAttribute2()
public apiUrl:string | undefined;
constructor(){
}
@logMethod1()
@logMethod2()
getData(){
return true;
}
setData(@logParams1() attr1:any,@logParams2() attr2:any,){
}
}
var http:any=new HttpClient();
// 属性装饰器2
// 属性装饰器1
// 方法装饰器2
// 方法装饰器1
// 方法参数装饰器2
// 方法参数装饰器1
// 类装饰器2
// 类装饰器1
总结
应用场景:类装饰器 可以注入到类、方法、属性参数上来扩展类、属性、方法、参数的功能;
执行顺序:属性-》方法-》方法参数-》类,同类型的从后到前(参数为从右到左)

,应用场景&spm=1001.2101.3001.5002&articleId=105502366&d=1&t=3&u=34c8c76ad3fe418ca428e6b9ef57ec65)
2953

被折叠的 条评论
为什么被折叠?



