Vue JS - 防止在 v-for 中显示重复值

Posted

技术标签:

【中文标题】Vue JS - 防止在 v-for 中显示重复值【英文标题】:Vue JS - Prevent show duplicate value in v-for 【发布时间】:2021-07-25 15:59:54 【问题描述】:

当我将鼠标悬停在四张图片上时,会显示某个组件。问题是显示的组件在 v-for 内部并且它们被重复我怎样才能摆脱这个? Here is the given code in codesandbox

<template>
  <div>
    <div class="enjoy_headline_container">
      <div class="EnjoyGirlsContainer">
        <div>
          <h3>Shrink the screen to 568 pixels or lower to see the problem</h3>
        </div>

        <div class="EnjoyGirlsList">
          <div
            v-for="(chunk, index) in Math.ceil(EnjoyGirlsList.length / 2)"
            :key="'chunk-' + index"
            :class="'wrap-' + index"
          >
            <div
              v-for="(item, index) in EnjoyGirlsList.slice(
                (chunk - 1) * 2,
                chunk * 2
              )"
              :key="'img-' + index"
              class="EnjoyCard"
              :class="'EnjoyCard-' + index"
            >
              <div>
                <img
                  @mouseover="mouseOver(item, (hover = true))"
                  v-bind:src="item.imagePath"
                  
                />
              </div>

              <div class="EnjoyCardContainer">
                <div
                  :style=" background: item.textColor "
                  class="EnjoyCardChildContainer"
                >
                  <h3 class="EnjoyCardChildContainerTitleName">
                     item.titleName 
                  </h3>
                </div>
              </div>
            </div>

            <div class="EnjoyGirlsHoverEffect">
              <div
                class="HoverLogic"
                @mouseleave="mouseout(enjoy, (hover = false))"
                v-for="(enjoy, index) in EnjoyGirlsList"
                :key="index"
              >
                <div class="EnjoyGirlsChildHoverEffect">
                  <component
                    v-show="enjoy.hovered"
                    v-bind:is="enjoy.componentName"
                  ></component>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>

<script>
import EnjoyBlue from "./components/EnjoyBlue";
import EnjoyGreen from "./components/EnjoyGreen";
import EnjoyYellow from "./components/EnjoyYellow";
import EnjoyRed from "./components/EnjoyRed";

export default 
  name: "HomePage",
  components: 
    EnjoyRed,
    EnjoyYellow,
    EnjoyGreen,
    EnjoyBlue,
  ,

  data() 
    return 
      homePageImageList: [
        
          imageURL:
            "http://astragem.com/static/images/MenuGirl/HomePageBackground/15-min.png",
        ,
        
          imageURL:
            "http://astragem.com/static/images/MenuGirl/HomePageBackground/15-min.png",
        ,
        
          imageURL:
            "http://astragem.com/static/images/MenuGirl/HomePageBackground/15-min.png",
        ,
      ],
      hover: false,
      sectionGirlsListComponentsNames: [
        "EnjoyRed",
        "EnjoyYellow",
        "EnjoyGreen",
        "EnjoyBlue",
      ],
      EnjoyGirlsList: [
        
          imagePath:
            "https://lh3.googleusercontent.com/_0OiZeWgElIETUMZW8B9wEZR-V0BLMyDBHfK6hdYQVGzsryLQAZ0GEL9_PDi5NlzmpK8bETuJcZ0CtUQKnErvs36Xw=w640-h400-e365-rj-sc0x00ffffff",
          titleName: "TEENS",
          textColor: "#74C8C5",
          hovered: false,
          componentName: "EnjoyBlue",
        ,
        
          imagePath:
            "https://p0.piqsels.com/preview/32/831/578/leaf-malina-garden-nature-thumbnail.jpg",
          titleName: "MINXES",
          textColor: "#76ED00",
          hovered: false,
          componentName: "EnjoyGreen",
        ,
        
          imagePath:
            "https://dandelionmarketing.com/wp-content/uploads/2020/01/yellow-09.jpg",
          titleName: "MILFS",
          textColor: "#FFE600",
          hovered: false,
          componentName: "EnjoyYellow",
        ,
        
          imagePath:
            "http://pm1.narvii.com/6691/30c6c5246b1aee0e676f741f63ab144bbdb77da2_00.jpg",
          titleName: "COURGARS",
          textColor: "#CC003D",
          hovered: false,
          componentName: "EnjoyRed",
        ,
      ],
    ;
  ,
  methods: 
    mouseOver: function (enjoy) 
      this.EnjoyGirlsList.forEach((enjoy) => (enjoy.hovered = false));
      enjoy.hovered = true;
    ,
    mouseout: function (enjoy) 
      enjoy.hovered = false;
    ,
  ,
;
</script>

享受蓝色

<template>
   <p>Blue Component</p>
</template>

享受绿色

<template>
   <p>Green Component</p>
</template>

享受黄色

<template>
   <p>Yellow Component</p>
</template>

享受红色

<template>
   <p>Red Component</p>
</template>

当我将鼠标悬停在四张图片上时,会显示某个组件。问题是显示的组件在 v-for 内部并且它们重复了我怎样才能摆脱这个?

【问题讨论】:

【参考方案1】:

您已经声明了在运行两次的 v-for 循环内显示该组件的标签,因此您需要在该 div 之外显示该组件。

更新了 App.vue 文件的模板部分:

<template>
  <div>
    <div class="enjoy_headline_container">
      <div class="EnjoyGirlsContainer">
        <div>
          <h3>Shrink the screen to 568 pixels or lower to see the problem</h3>
        </div>

        <div class="EnjoyGirlsList">
          <div
            v-for="(chunk, index) in Math.ceil(EnjoyGirlsList.length / 2)"
            :key="'chunk-' + index"
            :class="'wrap-' + index"
          >
            <div
              v-for="(item, index) in EnjoyGirlsList.slice(
                (chunk - 1) * 2,
                chunk * 2
              )"
              :key="'img-' + index"
              class="EnjoyCard"
              :class="'EnjoyCard-' + index"
            >
              <div>
                <img
                  @mouseover="mouseOver(item, (hover = true))"
                  v-bind:src="item.imagePath"
                  
                />
              </div>

              <div class="EnjoyCardContainer">
                <div
                  :style=" background: item.textColor "
                  class="EnjoyCardChildContainer"
                >
                  <h3 class="EnjoyCardChildContainerTitleName">
                     item.titleName 
                  </h3>
                </div>
              </div>
            </div>
          </div>
        </div>
        <div class="EnjoyGirlsHoverEffect">
          <div
            class="HoverLogic"
            @mouseleave="mouseout(enjoy, (hover = false))"
            v-for="(enjoy, index) in EnjoyGirlsList"
            :key="index"
          >
            <div class="EnjoyGirlsChildHoverEffect">
              <component
                v-show="enjoy.hovered"
                v-bind:is="enjoy.componentName"
              ></component>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>

【讨论】:

不幸的是,它们是重复的,我在codesandbox中应用了你的例子,但是它们是重复的,你可以看到给定的Code Here 您好,您没有正确应用它,在关闭h3标签之后,您可以在我的回答中看到有5个关闭div标签,然后我已经应用了div。

以上是关于Vue JS - 防止在 v-for 中显示重复值的主要内容,如果未能解决你的问题,请参考以下文章

Vue js 选择默认值不显示

Vue JS如何根据传递的嵌套v-for值设置选项?

uniapp 防止重复点击

在 Vue.js 中使用 V-for 和 V-if 在条件下显示 JSON 数据

Vue.js - 组件模板不使用 v-for 渲染

Vue.js常用指令:v-for