2015-11-11 37 views
0

無法從數據庫中加載圖片(圖片是在字節[])獲取從數據庫映像 下面是我的代碼使用angularjs

<div ng-app="MyProductApp"> 
     <h1>Category List</h1> 
     <div ng-controller="ProductsController"> 
      <table> 
       <tr ng-repeat="category in Category | orderBy : 'CategoryName'"> 
        <td><a ng-click="redirectToProductWiseCategories($event)" id="{{category.CategoryID}}">{{category.CategoryName}}</a></td> 
        <td> 
         <img ng-src="data:image/JPEG;base64,{{category.Picture}}" alt="img" /> 
        </td> 
       </tr> 

      </table> 
     </div> 
    </div> 

下面是我的方法,我在做什麼錯在這裏請。答案將非常感激。謝謝你在前進

<script> 
     var app = angular.module("MyProductApp", []); 
     app.controller("ProductsController", function ($scope, $http) { 
      $http.get('/api/Products/GetAllCategories'). 
       success(function (data, status, headers, config) { 
        //debugger; 
        $scope.Category = data; 
       }). 
       error(function (data, status, headers, config) { 
        alert("erro"); 
       }); 
     }); 
    </script> 
+0

控制檯中的任何錯誤?你能不能請一個笨蛋? – macrog

+0

cconsole沒有錯誤。 – Muzammil

回答

1

嘗試這樣,

<div ui-sref="task" class="col-lg-3 col-md-5 col-sm-6" ng-repeat="x in tasklist|filter:searchString"> 
 
    <div class="main-box clearfix profile-box"> 
 
\t <div class="main-box-body clearfix"> 
 
\t \t <div class="profile-box-header" padding-bottom:222px;"> 
 
\t \t <img src="{{x.imageUrl}}"/> 
 
\t \t <div style=""></div> 
 
\t \t </div> 
 
      <div class="profile-box-footer clearfix" > 
 
\t \t \t \t <span class="value" > {{x.title}}</span> 
 
\t \t \t \t <span>{{x.description}}</span>

IMAGEURL是在數據庫中的字段,我有我的存儲圖像和retrive這個樣子。