gpt4 book ai didi

javascript - 需要将包含img url的Json链接放在
转载 作者:行者123 更新时间:2023-12-03 07:04:34 26 4
gpt4 key购买 nike

我目前正在使用 FirebaseIonic 构建移动应用程序,我必须使用 firebase 的 json 链接,该链接在我的 html img ng- 中包含图像 url源代码。

这是Json link包含图像的 URL。

我想将此链接放入 img 并获取此 json 链接中包含的 url ("https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAAA/4252rscbv5M/photo.jpg")并显示图像,但我不知道该怎么做?

这是到目前为止我在 html 中得到的内容。

<img src="'https://wellesleytesting.firebaseio.com/userProfile/userimg.json'" />

任何帮助将不胜感激!谢谢!

最佳答案

您必须对 json 链接发出 http 请求,该请求将向您发送图像链接作为响应。

$http.get("https://wellesleytesting.firebaseio.com/userProfile/userimg.json")
.then(function(response) {
$scope.imgSrc = response.data;
$scope.imgSrc = JSON.parse($scope.imgSrc)
});

收到回复后,您必须像这样解析它:

$scope.imgSrc = JSON.parse($scope.imgSrc) 

最后使用 ng-src 属性将其绑定(bind)到您的 html:

<img ng-src="{{imgSrc}}"/>

Demo

关于javascript - 需要将包含img url的Json链接放在<img ng-src中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36884472/

26 4 0

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