admin管理员组文章数量:1345090
I have this code
function changeFunc() {
return function(target: any, title: string, descriptor: PropertyDescriptor) {
descriptor.value = function () {
console.log(this.name);
};
return descriptor;
}
}
class Man {
name: string = "asdsds";
constructor(name: string) {
this.name = name;
}
@changeFunc()
getName() {
console.log("Hello");
}
}
var man = new Man('Manos Serifios');
man.getName();
In other words i try (with the decorator) to change the method
getName() {
console.log("Hello");
}
with this
function () {
console.log(this.name);
}
but this.name evaluated as undefined.
If i console log the "this" it seems that is the right(instance man).
I have this code
function changeFunc() {
return function(target: any, title: string, descriptor: PropertyDescriptor) {
descriptor.value = function () {
console.log(this.name);
};
return descriptor;
}
}
class Man {
name: string = "asdsds";
constructor(name: string) {
this.name = name;
}
@changeFunc()
getName() {
console.log("Hello");
}
}
var man = new Man('Manos Serifios');
man.getName();
In other words i try (with the decorator) to change the method
getName() {
console.log("Hello");
}
with this
function () {
console.log(this.name);
}
but this.name evaluated as undefined.
If i console log the "this" it seems that is the right(instance man).
Share Improve this question asked Jan 11, 2018 at 22:57 Manos SerifiosManos Serifios 5772 gold badges8 silver badges22 bronze badges 2-
maybe
descriptor.value = function () { console.log(target.name); };
. I am just guessing and have no experience with typescript decorators – 2pha Commented Jan 12, 2018 at 0:30 - @2pha no, i tried it – Manos Serifios Commented Jan 12, 2018 at 9:44
3 Answers
Reset to default 7You don't have the context of a specific object instance inside the decorator method. The parameters are the following (from https://www.typescriptlang/docs/handbook/decorators.html):
Either the constructor function of the class for a static member, or the prototype of the class for an instance member.
The name of the member.
The Property Descriptor for the member.
You can do a little Hack. Replace your code
descriptor.value = function () {
console.log(this.name);
};
with this nice trick:
descriptor.value = function () {
// Hack
const self = this as Man;
console.log(self.name);
};
@hackerman's answer worked for me, as it seems to just be a typing issue.
An alternative solution would be to actively define the type of this
for that function:
descriptor.value = function (this: Man) {
console.log(this.name);
};
本文标签: javascriptTypescript Method DecoratorStack Overflow
版权声明:本文标题:javascript - Typescript Method Decorator - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778797a2537471.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论