Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the method of deconstructing V-for

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly talks about "what is the method of deconstructing V-for". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "what is the method of V-for deconstruction"?

It works because Vue promotes the entire first part of v-for directly to the parameter part of the function:

Function (_) {/ /.}

Vue then uses this function internally to render the list.

This means that any valid Javascript that can be placed in parentheses in the function can also be placed in the v-for, as shown below:

Other v-for skills

As we all know, you can get an index from v-for by using the following tuple:

When using an object, you can also capture key:

{{key}}: {{value}}

You can also use a combination of these two methods to get the key and index of the property:

# {{index + 1}. {{key}}: {{value}}

Vue does support iterating over Map and Set objects, but because they are not responsive in Vue 2.x, their use is very limited. We can also use any Iterable here, including generators.

By the way, I sometimes use Map or Set, but usually calculate only as intermediate objects. For example, if I need to find all unique strings in the list, I can do this:

Computed () {uniqueItems () {/ / create a Set from the array and delete all duplicates const unique = new Set (this.items); / / convert the Set back to the array return Array.from (unique) available for Vue;}}

String and v-for

Did you know that you can also use v-for to traverse strings?

This is not in the documentation, but I only found it when I was reading through the code to figure out how v-for was implemented:

{{character}}

Each character is printed on it.

At this point, I believe you have a deeper understanding of "what is the method of V-for deconstruction". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report