我的应用程序(客户端)位于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;
})