Iterate array inside object Angular 6










0















I'm getting an object via API with this method:



this.someService.getStuffFromAPI(this.idUser, 'Area')
.pipe(first())
.subscribe(
data =>
this.stuffOnView = data;
,
error =>
console.log(error);

);


This returns an Object that have an Array, like this:
Array returned by API call
In my html I have managed to get the Array length using this:



<div class="task-group" *ngFor="let key of objectKeys(stuffOnView)">
<span class="column-title">
key.length Items to display
</span>


But I can't get the properties inside the array, like idRec and so on.



How can I iterate to get the array's properties?



Thanks for your help.










share|improve this question


























    0















    I'm getting an object via API with this method:



    this.someService.getStuffFromAPI(this.idUser, 'Area')
    .pipe(first())
    .subscribe(
    data =>
    this.stuffOnView = data;
    ,
    error =>
    console.log(error);

    );


    This returns an Object that have an Array, like this:
    Array returned by API call
    In my html I have managed to get the Array length using this:



    <div class="task-group" *ngFor="let key of objectKeys(stuffOnView)">
    <span class="column-title">
    key.length Items to display
    </span>


    But I can't get the properties inside the array, like idRec and so on.



    How can I iterate to get the array's properties?



    Thanks for your help.










    share|improve this question
























      0












      0








      0








      I'm getting an object via API with this method:



      this.someService.getStuffFromAPI(this.idUser, 'Area')
      .pipe(first())
      .subscribe(
      data =>
      this.stuffOnView = data;
      ,
      error =>
      console.log(error);

      );


      This returns an Object that have an Array, like this:
      Array returned by API call
      In my html I have managed to get the Array length using this:



      <div class="task-group" *ngFor="let key of objectKeys(stuffOnView)">
      <span class="column-title">
      key.length Items to display
      </span>


      But I can't get the properties inside the array, like idRec and so on.



      How can I iterate to get the array's properties?



      Thanks for your help.










      share|improve this question














      I'm getting an object via API with this method:



      this.someService.getStuffFromAPI(this.idUser, 'Area')
      .pipe(first())
      .subscribe(
      data =>
      this.stuffOnView = data;
      ,
      error =>
      console.log(error);

      );


      This returns an Object that have an Array, like this:
      Array returned by API call
      In my html I have managed to get the Array length using this:



      <div class="task-group" *ngFor="let key of objectKeys(stuffOnView)">
      <span class="column-title">
      key.length Items to display
      </span>


      But I can't get the properties inside the array, like idRec and so on.



      How can I iterate to get the array's properties?



      Thanks for your help.







      arrays angular javascript-objects






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 16 '18 at 0:45









      roymckrankroymckrank

      150215




      150215






















          2 Answers
          2






          active

          oldest

          votes


















          2














          One easy way to do it is to define an interface that describes the layout of your array elements. For example, my array of products has an interface like this:



          export interface Product 
          id: number;
          productName: string;
          productCode: string;
          category: string;
          tags?: string;
          releaseDate: string;
          price: number;
          description: string;
          starRating: number;
          imageUrl: string;



          Angular's http get method will then automatically map the incoming API array into an array of these objects:



           getProducts(): Observable<Product> 
          return this.http.get<Product>(this.productsUrl);



          Notice the generic parameter: <Product>. This is telling the http get method to return the object as an array of Product objects matching the above defined interface.



          I can then use something like this:



          this.products[0].productName


          Or I can iterate it in my UI like this:



           <tr *ngFor="let product of products">
          <td>
          <a> product.productName </a>
          </td>
          <td> product.productCode </td>
          <td> product.releaseDate </td>
          <td> product.price </td>
          </tr>


          Hope this helps.






          share|improve this answer






























            0














            I suggest you define an interface, as @DeborahK has shown. Alternatively you can use Angular's keyvalue pipe. The output array will be ordered by keys, however, so if your project is order-sensitive you should not be using this. I strongly recommend against this because it relies too heavily on data structure and can break easily if your response data structure changes.



            <div class="task-group" *ngFor="let object of result | keyvalue">
            <span class="column-title">
            object?.value?.length Items to display
            </span>
            <ng-container *ngIf="object?.value?.length">
            <div class="task-item" *ngFor="let item of object.value">
            item.idRec
            </div>
            </ng-container>
            </div>





            share|improve this answer






















              Your Answer






              StackExchange.ifUsing("editor", function ()
              StackExchange.using("externalEditor", function ()
              StackExchange.using("snippets", function ()
              StackExchange.snippets.init();
              );
              );
              , "code-snippets");

              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "1"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53329863%2fiterate-array-inside-object-angular-6%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              One easy way to do it is to define an interface that describes the layout of your array elements. For example, my array of products has an interface like this:



              export interface Product 
              id: number;
              productName: string;
              productCode: string;
              category: string;
              tags?: string;
              releaseDate: string;
              price: number;
              description: string;
              starRating: number;
              imageUrl: string;



              Angular's http get method will then automatically map the incoming API array into an array of these objects:



               getProducts(): Observable<Product> 
              return this.http.get<Product>(this.productsUrl);



              Notice the generic parameter: <Product>. This is telling the http get method to return the object as an array of Product objects matching the above defined interface.



              I can then use something like this:



              this.products[0].productName


              Or I can iterate it in my UI like this:



               <tr *ngFor="let product of products">
              <td>
              <a> product.productName </a>
              </td>
              <td> product.productCode </td>
              <td> product.releaseDate </td>
              <td> product.price </td>
              </tr>


              Hope this helps.






              share|improve this answer



























                2














                One easy way to do it is to define an interface that describes the layout of your array elements. For example, my array of products has an interface like this:



                export interface Product 
                id: number;
                productName: string;
                productCode: string;
                category: string;
                tags?: string;
                releaseDate: string;
                price: number;
                description: string;
                starRating: number;
                imageUrl: string;



                Angular's http get method will then automatically map the incoming API array into an array of these objects:



                 getProducts(): Observable<Product> 
                return this.http.get<Product>(this.productsUrl);



                Notice the generic parameter: <Product>. This is telling the http get method to return the object as an array of Product objects matching the above defined interface.



                I can then use something like this:



                this.products[0].productName


                Or I can iterate it in my UI like this:



                 <tr *ngFor="let product of products">
                <td>
                <a> product.productName </a>
                </td>
                <td> product.productCode </td>
                <td> product.releaseDate </td>
                <td> product.price </td>
                </tr>


                Hope this helps.






                share|improve this answer

























                  2












                  2








                  2







                  One easy way to do it is to define an interface that describes the layout of your array elements. For example, my array of products has an interface like this:



                  export interface Product 
                  id: number;
                  productName: string;
                  productCode: string;
                  category: string;
                  tags?: string;
                  releaseDate: string;
                  price: number;
                  description: string;
                  starRating: number;
                  imageUrl: string;



                  Angular's http get method will then automatically map the incoming API array into an array of these objects:



                   getProducts(): Observable<Product> 
                  return this.http.get<Product>(this.productsUrl);



                  Notice the generic parameter: <Product>. This is telling the http get method to return the object as an array of Product objects matching the above defined interface.



                  I can then use something like this:



                  this.products[0].productName


                  Or I can iterate it in my UI like this:



                   <tr *ngFor="let product of products">
                  <td>
                  <a> product.productName </a>
                  </td>
                  <td> product.productCode </td>
                  <td> product.releaseDate </td>
                  <td> product.price </td>
                  </tr>


                  Hope this helps.






                  share|improve this answer













                  One easy way to do it is to define an interface that describes the layout of your array elements. For example, my array of products has an interface like this:



                  export interface Product 
                  id: number;
                  productName: string;
                  productCode: string;
                  category: string;
                  tags?: string;
                  releaseDate: string;
                  price: number;
                  description: string;
                  starRating: number;
                  imageUrl: string;



                  Angular's http get method will then automatically map the incoming API array into an array of these objects:



                   getProducts(): Observable<Product> 
                  return this.http.get<Product>(this.productsUrl);



                  Notice the generic parameter: <Product>. This is telling the http get method to return the object as an array of Product objects matching the above defined interface.



                  I can then use something like this:



                  this.products[0].productName


                  Or I can iterate it in my UI like this:



                   <tr *ngFor="let product of products">
                  <td>
                  <a> product.productName </a>
                  </td>
                  <td> product.productCode </td>
                  <td> product.releaseDate </td>
                  <td> product.price </td>
                  </tr>


                  Hope this helps.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 16 '18 at 1:30









                  DeborahKDeborahK

                  28.9k54171




                  28.9k54171























                      0














                      I suggest you define an interface, as @DeborahK has shown. Alternatively you can use Angular's keyvalue pipe. The output array will be ordered by keys, however, so if your project is order-sensitive you should not be using this. I strongly recommend against this because it relies too heavily on data structure and can break easily if your response data structure changes.



                      <div class="task-group" *ngFor="let object of result | keyvalue">
                      <span class="column-title">
                      object?.value?.length Items to display
                      </span>
                      <ng-container *ngIf="object?.value?.length">
                      <div class="task-item" *ngFor="let item of object.value">
                      item.idRec
                      </div>
                      </ng-container>
                      </div>





                      share|improve this answer



























                        0














                        I suggest you define an interface, as @DeborahK has shown. Alternatively you can use Angular's keyvalue pipe. The output array will be ordered by keys, however, so if your project is order-sensitive you should not be using this. I strongly recommend against this because it relies too heavily on data structure and can break easily if your response data structure changes.



                        <div class="task-group" *ngFor="let object of result | keyvalue">
                        <span class="column-title">
                        object?.value?.length Items to display
                        </span>
                        <ng-container *ngIf="object?.value?.length">
                        <div class="task-item" *ngFor="let item of object.value">
                        item.idRec
                        </div>
                        </ng-container>
                        </div>





                        share|improve this answer

























                          0












                          0








                          0







                          I suggest you define an interface, as @DeborahK has shown. Alternatively you can use Angular's keyvalue pipe. The output array will be ordered by keys, however, so if your project is order-sensitive you should not be using this. I strongly recommend against this because it relies too heavily on data structure and can break easily if your response data structure changes.



                          <div class="task-group" *ngFor="let object of result | keyvalue">
                          <span class="column-title">
                          object?.value?.length Items to display
                          </span>
                          <ng-container *ngIf="object?.value?.length">
                          <div class="task-item" *ngFor="let item of object.value">
                          item.idRec
                          </div>
                          </ng-container>
                          </div>





                          share|improve this answer













                          I suggest you define an interface, as @DeborahK has shown. Alternatively you can use Angular's keyvalue pipe. The output array will be ordered by keys, however, so if your project is order-sensitive you should not be using this. I strongly recommend against this because it relies too heavily on data structure and can break easily if your response data structure changes.



                          <div class="task-group" *ngFor="let object of result | keyvalue">
                          <span class="column-title">
                          object?.value?.length Items to display
                          </span>
                          <ng-container *ngIf="object?.value?.length">
                          <div class="task-item" *ngFor="let item of object.value">
                          item.idRec
                          </div>
                          </ng-container>
                          </div>






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 16 '18 at 3:18









                          JasmonateJasmonate

                          32849




                          32849



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53329863%2fiterate-array-inside-object-angular-6%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Top Tejano songwriter Luis Silva dead of heart attack at 64

                              ReactJS Fetched API data displays live - need Data displayed static

                              Evgeni Malkin