1 | function test(a, b) {} |
1 | <SomeComponent callback={(a, b) => {this.test(a, b)}} /> |
1 | function test(a, b) {} |
1 | <SomeComponent callback={::this.test} /> |
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 jaytp@qq.com
1 | function test(a, b) {} |
1 | <SomeComponent callback={(a, b) => {this.test(a, b)}} /> |
1 | function test(a, b) {} |
1 | <SomeComponent callback={::this.test} /> |