插件窝 干货文章 vue2.0如何动态绑定img的src属性(三元运算)

vue2.0如何动态绑定img的src属性(三元运算)

class div 方法 require 615    来源:    2024-10-30

vue2.0动态绑定img的src属性(三元运算)

在vue项目中,如果需要动态判断img的src地址 方法如下:

方法一

在标签里进行三元运算符判断的时候,引用地址外层需要加require()

require 函数在构建时会解析图片路径,并将图片打包到正确的位置。

使用 require 可以确保路径在打包时正确解析。

<img :src="checkResult.result?require('@/assets/images/passed_big.png'):require('@/assets/images/passed_big2.png')" alt="">

方法二

使用computed属性来动态计算img的src路径

<template>
  <div>
    <img :src="getImageSrc" alt="">
  </div>
</template>

<script>
export default {
  data() {
    return {
      checkResult:true
    };
  },
  computed: {
    getImageSrc() {
      return this.checkResult
        ? require('@/assets/images/passed_big.png')
        : require('@/assets/images/passed_big2.png');
    }
  }
};
</script>

<style scoped>
/* 你的样式 */
</style>

方法三

动态import可以用于在运行时加载资源,但这种方法通常用于更复杂的场景,如按需加载模块

<template>
  <div>
    <img :src="getImageSrc" alt="">
  </div>
</template>
export default {
  data() {
    return {
      checkResult:true
      imageSrc: ''
    };
  },
  async created() {
    this.imageSrc = this.checkResult
      ? await import('@/assets/images/passed_big.png')
      : await import('@/assets/images/passed_big2.png');
  }
};

总结

以上为个人经验,希望对您有所帮助。