Skip to content

Commit e8c2d2e

Browse files
committed
docs(decorator): fixed #1165
1 parent 1b9a0cc commit e8c2d2e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

docs/decorator.md

-2
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,6 @@ MyClass.isTestable // false
129129

130130
上面代码中,装饰器`testable`可以接受参数,这就等于可以修改装饰器的行为。
131131

132-
注意,装饰器对类的行为的改变,是代码编译时发生的,而不是在运行时。这意味着,装饰器能在编译阶段运行代码。也就是说,装饰器本质就是编译时执行的函数。
133-
134132
前面的例子是为类添加一个静态属性,如果想添加实例属性,可以通过目标类的`prototype`对象操作。
135133

136134
```javascript

0 commit comments

Comments
 (0)