Home > Web Front-end > JS Tutorial > body text

Share two methods of dynamically passing values ​​from Vue parent components to child components

小云云
Release: 2017-12-22 10:58:41
Original
3928 people have browsed it

In some project requirements, the parent component needs to dynamically transfer values ​​​​to the child component. For example, my requirement here is that the parent component dynamically obtains the returned image url array through axios and then passes it to the child component. The child component that uploads the image gets the After the array is traversed and the picture is displayed. This article mainly introduces two methods for dynamically transferring values ​​​​from Vue parent components to child components. Friends who need it can refer to it. I hope it can help everyone.

There are two methods,

Method 1:

props pass value, pay attention to a problem here, the passed value needs to be monitored and assigned with watch, otherwise it will be obtained here is an empty array

Parent component:

<uploadImg :width="200" :height="200" name="productImage" size="750px*750px" ref="productImage" :src-list="this.productImage"></uploadImg>
Copy after login
this.productImage=res.data.cover;
Copy after login

Here, assign the array returned through the background to

this.productImage, and then pass the array to the props defined by the child component Attribute src-list

Subcomponent:

watch:{
     srcList(curVal,oldVal){
      if(curVal){
       ;
       this.uploadImg=curVal;
       }
     },
}
Copy after login

Then the subcomponent successfully obtains the array

Method 2:

Through the ref attribute, the parent component calls The method of the subcomponent passes the array to be passed as a parameter to the subcomponent. The subcomponent gets the parameter and uses

Parent component:

this.$refs.productImage.getSrcList(res.data.cover);
Copy after login

Child component:

getSrcList(val){
  this.uploadImg=val;
}
Copy after login

PS: Let’s look at the vuejs dynamic component passing data to the sub-component

The props when the sub-component is defined can support the parent component to pass data to the sub-component. These defined props are bound in the tag of the sub-component. Attributes are enough, but if you are using a dynamic component, there will be no explicit sub-component tags at this time. To pass data to the sub-component, you need to bind it in

  <p class="app" id="deviceready">
    <component :is="currentView" :user_name.sync="user_name" :DOB.sync="DOB"></component>
  </p>
Copy after login

The function of the component is independent. The function of the component is independent. If you want to obtain data from the component, you need to pass it layer by layer. That is to say, the child component can only obtain data from the direct parent component. , if it is the data of the root component, then the parent component must continue to expose pops to bind the data from the root component.

Related recommendations:

Sharing the simple implementation method of page reverse value transfer in vue

Value transfer problem of VUE2.0 component

Introduction to the method of passing values ​​in php

The above is the detailed content of Share two methods of dynamically passing values ​​from Vue parent components to child components. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!