gpt4 book ai didi

json - 在 VUE 中显示图像,该图像托管在 https 上

转载 作者:搜寻专家 更新时间:2023-10-30 22:24:49 26 4
gpt4 key购买 nike

我有一个看起来像这样的 json:

    {
"books": [
{
"name": "Lord of the rings",
"author": 1,
"year": 1937,
"genre": 3,
"imageUrl": "https://cdn.lifehack.org/wp-content/uploads/2015/03/9780618640157_custom-s6-c30.jpg",
"availability": true
}
}

我正在尝试像这样显示图像:问题是图像没有显示,因为 url 是这样的 localhost:8080/https://....我的代码如下所示:

<tr v-for="item in items.books" :key="item.name">
<td>{{item.name}}</td>
<td>{{item.author}}</td>
<td>{{item.genre}}</td>
<td><img :src="'{{'+item.imageUrl+'}}'"></td>
<td>{{item.svailability}}</td>
</tr>

有什么想法吗?

最佳答案

正确的方法:<img :src="item.imageUrl">

关于json - 在 VUE 中显示图像,该图像托管在 https 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53763130/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com