400 (bad request) in angular js url image

ImageUrl/{{product.thumb_vImage}} 400 (Bad Request)

      

I am getting the error above in console

; I want to know the reason for this.

<div class="img" ng-repeat="product in products| orderBy : sort_by |limitTo:limit track by $index " >
  <a ng-click="displayProduct(product)" data-toggle="modal" data-target="#modal_product"> 
      <img class="image_{{product.iProductID}}" src="{{product.thumb_vImage}}" alt="">
      <div class="overlay"></div>
  </a>
</div>

      

+3


source to share


1 answer


It should be like instead of also instead of , p> {{}}

[[]]

ng-src

src



   <img class="image_{{product.iProductID}}" ng-src="{{product.thumb_vImage}}" alt="">

      

+3


source







All Articles