【发布时间】:2018-10-30 03:32:11
【问题描述】:
我正在使用 vue.js 构建一个博客,并且我正在尝试使我的图片可点击,并且在点击图片后它将定向到我的一个 vue 组件。 我被困在动态传递查询字符串(查询字符串是从 MongoDB 检索的博客内容 id 并且图像用作博客文章的缩略图。)
到目前为止我已经尝试过
<router-link to="/blogcontent/:${post.bcid}" tag="img" v-bind:src="`/static/uploads/` + post.thumbnail"></router-link>
和
<router-link to="{ name: 'BlogContent', params: { blogId: post.bcid }" tag="img" v-bind:src="`/static/uploads/` + post.thumbnail"></router-link>
但它们都不起作用。
提前致谢。
【问题讨论】:
标签: vue.js vue-component vue-router