Analysis and solution of data loss during Vue component value transfer

Analysis and solution of data loss during Vue component value transfer

Preface

In the previous article Two data types in JavaScript, basic types and reference types were introduced, as well as shallow copies and deep copies of reference types. It should be noted here that the method of deep copying reference type values ​​in this article is not perfect, and some attribute values ​​in the reference type value cannot be completely copied to the new variable. For example, function values ​​will be lost during the deep copy process.

question

In actual projects, if a secondary encapsulated component is used and some deep copy operations of attribute values ​​are performed inside the encapsulated component, it is very likely that some data will be lost because the attribute value passed in is a reference type value.

Example

Take the ak-table component based on el-table encapsulation as an example:

Pass the row-key attribute to the ak-table component. This attribute can pass a function: Function(row). For details, see the official documentation.

According to normal logic, the attribute value passed into ak-table should be passed into the el-table component intact, but a strange thing happened here. The function we passed in disappeared in the component!

Problem Analysis

First, pass in the value of the row-key attribute of ak-table, which is a function, that is, a reference type value. Then, according to what was said at the beginning of the article, if a general deep copy operation is performed on a reference type value, data such as functions and arrays will be lost.

In ak-table, find the row-key attribute. Since it is not defined in props, it should be saved in the attrs attribute of the component. Go to the mounted method and print the attrs attribute. Go to the mounted method and print the value of attrs to see the data comparison before and after the copy.

Console Output

———————————————————————————————————————

The problem is very clear here. First, the ak-table component actually wants to initialize the attribute value passed in, and then performs a deep copy operation on $attrs. After the copy, the row-key attribute value is lost, resulting in data loss.

Solution

For the value of the passed reference type, the child component directly receives the value from the parent component through the props attribute, and then does not process the passed value and uses it directly.

For the values ​​of reference type passed in, they should be treated specially when copied, and the attribute values ​​needed should be recursively copied to the new variable.

Summarize

Understanding the basic types and reference types in JavaScript, as well as copying reference type values, are basic skills for us to develop with this language. Sometimes, due to carelessness, people think that simply and roughly copying a variable means they have obtained a complete replica of it, which causes some data to 'disappear'. At this time, you can refer to the solution in the article. This is a problem I encountered in project development. I record it here and hope it will be helpful to you.

This concludes this article on the analysis and solution of data loss during Vue component value transfer. For more relevant content on Vue component value loss, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

Reference link: Some pitfalls of JavaScript deep copy

You may also be interested in:
  • Vue implements 3 ways to switch tabs and switch to maintain data status
  • Implementation of large-screen display of data visualization based on vue+echarts
  • Implementation of drag data visualization function in Vue based on Echarts
  • Vue gets the data but cannot render it on the page
  • Antd-vue Table component adds Click event to click on a row of data tutorial
  • vue+echarts+datav large screen data display and implementation of China map province, city and county drill-down function
  • Pitfalls encountered in vuex, vuex data changes, page rendering operations in components
  • Vue implements data sharing and modification operations between two components
  • A brief analysis of the basic implementation of Vue detection data changes

<<:  Sharing of SVN service backup operation steps

>>:  Comparison of mydumper and mysqldump in mysql

Recommend

Pitfalls based on MySQL default sorting rules

The default varchar type in MySQL is case insensi...

Detailed process of drawing three-dimensional arrow lines using three.js

Demand: This demand is an urgent need! In a subwa...

25 Vue Tips You Must Know

Table of contents 1. Limit props to type lists 2....

MySQL 8.0.24 version installation and configuration method graphic tutorial

This article records the installation and configu...

Echarts Basic Introduction: General Configuration of Bar Chart and Line Chart

1Basic steps of echarts Four Steps 1 Find the DOM...

Teach you to implement a simple promise step by step

Table of contents Step 1: Build the framework Ste...

A detailed introduction to Linux memory management and addressing

Table of contents 1. Concept Memory management mo...

How to choose the right MySQL datetime type to store your time

When building a database and writing a program, i...

Install mysql offline using rpm under centos 6.4

Use the rpm installation package to install mysql...

How to configure SSL for koa2 service

I. Introduction 1: SSL Certificate My domain name...

PostgreSQL materialized view process analysis

This article mainly introduces the process analys...

How to use Vue3 to achieve a magnifying glass effect example

Table of contents Preface 1. The significance of ...

Detailed explanation of how to solve the problem of too long content in CSS

When we write CSS, we sometimes forget about the ...

Installation steps of docker-ce on Raspberry Pi 4b ubuntu19 server

The Raspberry Pi model is 4b, 1G RAM. The system ...