为什么我的图像不能在 Vue.js 2 中加载?

新手上路,请多包涵

我试图让我的图像通过 Vue.js 2 中的相对路径加载,但似乎有些问题。关于 Vue,我刚刚开始涉足,非常感谢任何指点。所述图像位于 /src/assets/imgs 目录中。

以下是相关组件的相关代码片段。

文件树截图

 <template>
  <section class="container sources">
        <h2>{{ heading }}</h2>
        <div class="columns">
            <div class="column" v-for="source in sources">
                <figure :title="source">
                    <img :src="imgPath + source + '.png'" :alt="source + ' logo'">
                    <figcaption>{{ source }}</figcaption>
                </figure>
            </div>
        </div>
    </section>
</template>

<script>
export default {
   name: 'sources',
   data () {
      return {
          heading: 'News Sources',
          imgPath: 'src/assets/imgs/',
          sources: [
            'al-jazeera-english', 'associated-press', 'bbc-news', 'bbc-sport', 'business-insider', 'cnn',
            'daily-mail', 'entertainment-weekly', 'espn', 'financial-times', 'fox-sports', 'hackernews',
            'ign','independent', 'mtv-news', 'national-geographic', 'new-scientist', 'reuters', 'techcrunch', 'the-economist', 'the-guardian-uk', 'the-huffington-post', 'the-new-york-times',
                'the-washington-post'
           ]
      }
   }
}
</script>

编辑: 根据要求添加了我的项目(简单)文件树的屏幕截图。当然,这些图像位于“imgs”文件夹中。

原文由 Collins Orlando 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 514
2 个回答

假设您使用的是来自 vue-cli 的 webpack 模板,您可以简单地使用 静态资产 的相对路径。

 <img :src="'./assets/imgs/' + source + '.png'"


或者,将您的图像放在 static 目录中并使用绝对路径引用它们,即

<img :src="'/static/imgs/' + source + '.png'"

原文由 Phil 发布,翻译遵循 CC BY-SA 3.0 许可协议

这应该工作

<img :src="image" >
data () {
  return {
    image: require('@/assets/images/pin.svg')
  }
},

原文由 Bobby Kimutai 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题