search
HomeWeb Front-endJS TutorialHow to assign value to src attribute through Vue using v-for (detailed tutorial)

Below I will share with you an article on how Vue uses v-for to assign values ​​to the src attribute. It has a good reference value and I hope it will be helpful to everyone.

My code structure is as shown in the code below, which cannot be executed. The mustache notation cannot be used in the src attribute in img

<p id="test">
  <p v-for="item in lists">
    <img  src="/static/imghwm/default1.png"  data-src="{{item.img}}"  class="lazy"   alt="How to assign value to src attribute through Vue using v-for (detailed tutorial)" >
  </p>
</p>
new Vue({
  el: "#test",
  data: function () {
    return {
      lists: [
        { img : &#39;img1&#39; },
        { img : &#39;img2&#39; },
        { img : &#39;img3&#39; },
        { img : &#39;img4&#39; }        
      ]
    }
  },
})

Later I changed the code in the html to the following

<p id="test">
  <p v-for="item in lists">
    <img  src="/static/imghwm/default1.png"  data-src="item.img"  class="lazy"  v-bind: alt="How to assign value to src attribute through Vue using v-for (detailed tutorial)" >
  </p>
</p>

After using the v-bind tag, you can use it normally

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

JS method of traversing irregular multi-dimensional arrays

Vue project closes eslint verification

Two methods to remove code specification detection in vue

The above is the detailed content of How to assign value to src attribute through Vue using v-for (detailed tutorial). For more information, please follow other related articles on the PHP Chinese website!

Statement
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
如何为VMware虚拟机启用复制和粘贴如何为VMware虚拟机启用复制和粘贴Feb 21, 2024 am 10:09 AM

您可以轻松地在VMware虚拟机(VM)和物理系统之间复制和粘贴文本和文件。这种功能让您可以方便地在虚拟机和主机系统之间传输图像、格式化和非格式化文本,甚至电子邮件附件。本文将向您展示如何启用这一功能,并演示复制数据、文件和文件夹的方法。如何在VMware中启用复制/粘贴VMware提供了三种不同的方式将数据、文件或文件夹从虚拟机复制到物理计算机,反之亦然,如下所述:复制和粘贴要素拖放功能文件夹共享1]使用VMware工具启用复制粘贴如果您的VMWare安装和来宾操作系统满足要求,则可以使用键盘

如何在Word中复制页面如何在Word中复制页面Feb 20, 2024 am 10:09 AM

是否要复制MicrosoftWord中的页面,并保持格式不变?这是一个聪明的想法,因为当您想要创建特定文档布局或格式的多个副本时,在Word中复制页面可能是一种有用的节省时间的技术。本指南将逐步引导您在Word中复制页面的过程,无论是创建模板还是复制文档中的特定页面。这些简单的说明旨在帮助您轻松地重新制作页面,省去从头开始的麻烦。为什么要在MicrosoftWord中复制页面?在Word中复制页面非常有益的原因有以下几点:当您有一个具有特定布局或格式的文档要复制时。与从头开始重新创建整个页面不同

如何在Python中获取整数字面量属性而不是SyntaxError?如何在Python中获取整数字面量属性而不是SyntaxError?Aug 20, 2023 pm 07:13 PM

TogetintliteralattributeinsteadofSyntaxError,useaspaceorparenthesis.TheintliteralisapartifNumericLiteralsinPython.NumericLiteralsalsoincludesthefollowingfourdifferentnumericaltypes−int(signedintegers)−Theyareoftencalledjustintegersorints,arepositiveo

Vue 中使用 v-for 实现动态排序的技巧Vue 中使用 v-for 实现动态排序的技巧Jun 25, 2023 am 09:18 AM

Vue是一种现代化的JavaScript框架,它可以帮助我们轻松构建动态网页和复杂的应用程序。在Vue中,使用v-for可以轻松创建循环结构,对数据进行迭代渲染。而在一些特定的场景中,我们还可以利用v-for实现动态排序。本文将介绍如何在Vue中使用v-for实现动态排序的技巧,以及一些应用场景及示例。一、使用v-for进行简单

如何在Java中使用Gson重命名JSON的属性?如何在Java中使用Gson重命名JSON的属性?Aug 27, 2023 pm 02:01 PM

Gson@SerializedName注释可以序列化为JSON,并将提供的名称值作为其字段名称。此注释可以覆盖任何FieldNamingPolicy,包括可能已在Gson实例上设置的默认字段命名策略。可以使用GsonBuilder类设置不同的命名策略。语法@Retention(value=RUNTIME)@Target(value={FIELD,METHOD})public@interfaceSerializedName示例importcom.google.gson.annotations.*;

在终端中禁用或启用自动复制所选内容以进行复制在终端中禁用或启用自动复制所选内容以进行复制Mar 24, 2024 am 09:46 AM

本文将向您介绍如何在Windows终端中启用或禁用自动将选择内容复制到剪贴板的功能。Windows终端是微软专为Windows11/10开发的多标签终端模拟器,取代了传统的命令提示符。它支持运行命令提示符、PowerShell、WSL、Azure等应用程序。通常在终端工作时,用户需要复制命令和输出,然而终端默认情况下不支持复制选择操作。请继续阅读本文,了解如何解决这个问题。如何在终端中启用或禁用自动复制所选内容到缓存?以下是您如何启用或禁用自动复制选择到终端剪贴板:打开终端应用程序,然后点击上面

Vue3中的v-for函数详解:完美解决列表数据渲染Vue3中的v-for函数详解:完美解决列表数据渲染Jun 18, 2023 am 09:57 AM

随着数码技术的不断进步,前端开发已经成为一个越来越受欢迎的职业。而Vue3由于其简单易用、高效稳定的特性,成为了越来越多开发者的首选。其中,v-for函数是Vue3中用于列表数据渲染的核心函数之一。在这篇文章中,我们将对Vue3中的v-for函数进行详解,让你能够更好地运用它解决实际开发中的问题。一、基础语法v-for函数的基础语法如下:&lt;divv-

Win11磁盘属性未知怎么办Win11磁盘属性未知怎么办Jul 03, 2023 pm 04:17 PM

  Win11磁盘属性未知怎么办?近期Win11用户在电脑的使用中,发现系统出现提示磁盘错误的情况,这是怎么回事儿呢?而且应该如何解决呢?很多小伙伴不知道怎么详细操作,小编下面整理了Win11磁盘出错的解决步骤,如果你感兴趣的话,跟着小编一起往下看看吧!  Win11磁盘出错的解决步骤  1、首先,按键盘上的Win+E组合键,或点击任务栏上的文件资源管理器;  2、文件资源管理器的右侧边栏,找到边右键点击本地磁盘(C:),在打开的菜单项中,选择属性;  3、本地磁盘(C:)属性窗口,切换到工具选

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor