Hi Gregory,

Here is the code as per your requirement,

<div class="col-md-3 col-sm-6 hero-feature" ng-repeat="sales in salesList">
                <div class="thumbnail" ng-repeat="item in sales">
                  <div class="row" ng-repeat="image in item">
                    <img ng-src="{{image.url}}" height="{{image.height}}" 
width="{{image.width}}">
                  </div>

                 <!--  <img ng-src="{{item.image_urls.url}}"> -->
                    <div class="caption">
                        <h3>{{item.name}}</h3>
                        <p>{{item.description}}</p>
                        <p>
                            <a href="#" class="btn btn-primary">Buy 
Now!</a> <a href="#" class="btn btn-default">More Info</a>
                        </p>
                    </div>

                </div>
            </div>




On Saturday, December 12, 2015 at 6:10:32 AM UTC+5:30, Gregory Gue wrote:
>
> High How do I access the url image in  arrary wich is in the image_urls 
> object in tha sales array?
>
> Please see the attached screeen shot.
>
> my code is as follow:
>
> <div class="col-md-3 col-sm-6 hero-feature" ng-repeat="sales in salesList">
>                 <div class="thumbnail" ng-repeat="item in sales">
>                   <div class="row" ng-repeat="image in item">
>                     <img ng-src="{{image.image_urls[0].url}}">
>                   </div>
>
>                  <!--  <img ng-src="{{item.image_urls.url}}"> -->
>                     <div class="caption">
>                         <h3>{{item.name}}</h3>
>                         <p>{{item.description}}</p>
>                         <p>
>                             <a href="#" class="btn btn-primary">Buy 
> Now!</a> <a href="#" class="btn btn-default">More Info</a>
>                         </p>
>                     </div>
>
>                 </div>
>             </div>
>

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to