美文网首页
babel使用记录

babel使用记录

作者: 一日一K | 来源:发表于2020-06-02 16:01 被阅读0次

    装饰器

    参考:
    https://zhuanlan.zhihu.com/p/49843870
    https://www.simplethread.com/understanding-js-decorators/
    重点:

    以上我们都是用于修饰类方法,我们获取值的方式为:
    const method = descriptor.value;
    但是如果我们修饰的是类的实例属性,因为 Babel 的缘故,通过 value 属性并不能获取值,我们可以写成:
    const value = descriptor.initializer && descriptor.initializer();

    相关文章

      网友评论

          本文标题:babel使用记录

          本文链接:https://www.haomeiwen.com/subject/rpguzhtx.html