组件化

作者: 抉择_路 | 来源:发表于2020-07-08 21:46 被阅读0次

    编程与算法训练与 组件化

    Proxy 与双向绑定

    组件化: 组件的基本知识,轮播组件

    对象与组件

    1. 对象包含的内容
    • Properties
    • Methods
    • Inherit
    1. 组件包含的内容
    • Properties
    • Methods
    • Inherit
    • Attribute
    • Config & State
    • Event
    • Lifecycle
    • Children

    Component

    Attribute vs Property

    • Attribute 强调描述性
    <my-component attribute='v' />
    myComponent.getAttribute('a')
    myComponent.setAttribute('a', 'value');
    
    • Property 强调从属关系
    myComponent.a = 'value';
    
    • Attribute vs Property
    <input value='cute'/>
    <script>
    var input = document.getElementByTagName('input'); //若 property 没有设置,则结果是 attribute
    input.value //cute
    input.getAttribute('value');  //cute
    input.value = 'hello';  //若 value 属性已经设置,则 attribute 不变,property 变化,元素上实际的效果是 property 优先
    input.value //hello
    input.getAttribute('value');  //cute  
    </script>
    

    如何设计组件状态

    Markup set JS set JS Change User Input Change
    property
    attribute
    state
    config

    Lifecycle

    graph TD
    
    A[模块A] -->|A1| B(模块B)
    
    B --> C{判断条件C}
    
    C -->|条件C1| D[模块D]
    
    C -->|条件C2| E[模块E]
    
    C -->|条件C3| F[模块F]
    

    相关文章

      网友评论

          本文标题:组件化

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