0
ここではオブジェクト 'result'をロードしました。ロゴフィールドを名前ではなくイメージとして表示したいのですが、どのように動的に行うことができますか?画像jsonオブジェクトから画像をロードし、角度uiグリッドで表示するには
angular.module('myApp').controller('homecon', function ($scope, $http, $location, $rootScope) {
$http.get("http://localhost:1488/api/CompanyApi/get").success(function (res) {
$rootScope.result = res;
});
$scope.myGrid = {
data: 'result',
columnDefs: [{ field: "Comp_Name", displayName: 'Cmpany' },
{ field: 'email', displayName: 'Email' },
{ field: 'logo', cellTemplate: "<img width=\"50px\" ng-src='/logos/{{result[1].logo}}' lazy-src>" }
]
};
output for code display one image i want to display all images related with its object