vue 구성 요소$children,$refs,$parent 사용 에 대한 자세 한 설명

본 고 는 vue 구성 요소$children,$refs,$parent 의 사용 을 소개 하 였 으 며,여러분 에 게 공유 하고,자신 도 필 기 를 남 겼 습 니 다.
프로젝트 가 크 고 구성 요소 가 많다 면 어떻게 해 야 우리 가 원 하 는 구성 요 소 를 정확 하고 신속하게 찾 을 수 있 습 니까?
1)$refs
우선 하위 구성 요소 에 표 시 를 하 세 요.demo :
그리고 부모 구성 요소 에서 this.$refs.one 을 통 해 이 자체 구성 요소 에 접근 할 수 있 습 니 다.자체 구성 요소 의 data 에 접근 하 는 데 이 터 를 포함 하여 함 수 를 호출 할 수 있 습 니 다.
2)$children
그 가 돌아 온 것 은 구성 요소 집합 입 니 다.하위 구성 요소 의 순 서 를 잘 알 고 있다 면 아래 표 시 를 사용 하여 조작 할 수 있 습 니 다.

for(let i=0;i<this.$children.length;i++){
    console.log(this.$children[i].msg);      msg  ;
 }
이제 긴 데 노 하나 드릴 게 요.
우선 부모 구성 요 소 를 정의 합 니 다:parentcomponent,
부모 구성 요소 에서 나 는 또 두 개의 자체 구성 요 소 를 사용 했다.

<template id="parentcomponent">
  <div >
    <p>this is a parent-component</p>
    <firstchild ref="f1"></firstchild>
    <secondchild ref="f2"></secondchild>
    <button @click='show_child_of_parents'>show child msg</button>
  </div>
</template>
 각각 두 글자 구성 요소 의 정 의 를 내 립 니 다.(두 번 째 는 template,첫 번 째 는 script) 

<script type="text/x-template" id="childOne">
  <div>
    <p>this is first child</p>
   
    //  stop      (vue       )
    <button @click.stop='getParent'>get parent msg</button>
  </div>
</script>

<template id="childSec">
  <div>
    <p>this is second child</p>
  </div>
</template>

구성 요소 템 플 릿 이 정의 되 었 습 니 다.바로 다음 과 같 습 니 다.
1)원소 에 걸 기: 

<script>
  new Vue({
    el:"#app",
    data:{},
    components:{
      "parent-component":{
        template:'#parentcomponent', 
        data(){
          return{msg:'         '}          
        },
        methods:{
          show_child_of_parents(){
            //children       
               for(let i=0;i<this.$children.length;i++){
                console.log(this.$children[i].msg);
            }
               //  $ref   ,      
            console.log(this.$refs.f1.msg);
               this.$refs.f1.getParent();
          },                  
        },  
             
        components:{
          'firstchild':{
            template:'#childOne',
            data(){
              return {msg:'        '};
            },
            methods:{
              getParent(){
                let a=1;
                console.log(a);
                alert(this.$parent.msg);
                
              }
            },
          },
          
          'secondchild':{
            template:'#childSec',
            data(){
              return {msg:"       "};
            }
          }
          
        }
                
      }
    }
    
  });

</script>

 2)부모 구성 요 소 를 사 용 했 습 니 다

  <body>
    <p><strong>    $refs         </strong></p>
    <div id="app">
      <parent-component></parent-component>
    </div>
  </body>
주의해 야 할 것 은 vue 2 입 니 다.vue 1 보다 뭔 가 를 버 렸 습 니 다https://www.jb51.net/article/93467.htm
요약:
1)구성 요 소 는 하나의 노드 만 있 을 수 있다.
2)자체 구성 요소 에서 this.$parent.속성 값 이나 함 수 를 사용 할 수 있 습 니 다.
3)부모 구성 요소 에서 this.$refs.구성 요소 의 표 시 를 사용 하여 하위 구성 요소 나 this.$children[i].속성,하위 구성 요소 에 접근 할 수 있 습 니 다.
 4)당신 은 this 의 방향 에 주의해 야 합 니 다.

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기