我有一個顯示當前用戶圖片的網站。該網站使用Angularjs前端和c#後端。 這工作正常使用IE11,Firefox和Opera,但在邊緣它似乎無法找到圖像。 我的HTML:在控制器在Edge中加載圖片問題
<img ng-src="{{getImgUrl('@User.Identity.Name')}}" class="headshot" />
方法:
$scope.getImgUrl = function (username) {
var outputURL = "https://myurl.com/profilepictures/" + username + "_LThumb.jpg";
return outputURL;
};
風格:
.headshot {
padding-top: 10px;
padding-bottom: 10px;
}
應用程序的基礎url是什麼?你有在同一領域的圖片? – Edi
該應用程序是本地的,圖片在線。 –