显示API返回图像路径客户端应用程序AngularJS

时间:2016-05-06 10:56:11

标签: angularjs image api

我的应用程序(客户端)位于AngularJS中,并从API获取类似"C:/DocumentsUpload/SSS/1/profile/myImage.jpg"的个人资料图片路径。

现在,我需要将此图像显示在我的客户端。我的代码无效。它向我显示错误:不允许加载本地资源。 请提出建议。

Html Page喜欢:

<img ng-src="{{pathToPicture}}" src="{{pathToPicture}}" style="height: 90px; border-radius: 50% !important;">

控制器代码是:

var inputData = {
  'Data': {
    'StudentId': $state.params.studentID,
    'userid': settings.user.UserID
  }
};
StudentProfilesService.getProfilePicture(inputData).then(function(response) {
  $scope.pathToPicture = response.data.Data.Path;
})

0 个答案:

没有答案