gpt4 book ai didi

javascript - 如何加载在 Angular 中设置为字符串的 JSON 数值?

转载 作者:行者123 更新时间:2023-11-27 23:39:43 27 4
gpt4 key购买 nike

如果键值是数字,我看不到能够加载 json 图像,如果我在 html 文本或 ascii 中调用它似乎并不重要。

这里我使用两个具有相同图像值的不同键 foo200x150

json:

$scope.items = [
{
"id": 1,
"name": "Location 1",
"items_image": {
"id": 101,
"image": {
"200x150": "http://placehold.it/200x150?text=num1",
"foo": "http://placehold.it/200x150?text=foo1"
}
}
}

将 foo 加载为“foo”:有效

<img ng-src="{{item.items_image.image.foo}}">

将 foo 加载为“foo”:有效

 <img ng-src="{{item.items_image.image.&#102;&#111;&#111;}}">

将 200x150 加载为“200x150”:失败

<img ng-src="{{item.items_image.image.200x150}}">

将 200x150 加载为“200x150”: 失败

<img ng-src="{{item.items_image.image.&#50;&#48;&#48;&#120;&#49;&#53;&#48;}}">

如何用数字做到这一点?我举了一个例子:http://codepen.io/garrettmac/pen/wKOmoP

最佳答案

<img ng-src="{{item.items_image.image['200x150']}}">

关于javascript - 如何加载在 Angular 中设置为字符串的 JSON 数值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33794590/

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