Error in Angular 6: Undefined property cannot be read

Recently, I started using Angular for a project that utilizes Angular for the front end and PHP Laravel for the API. The API is returning a result set structured like this:

{  
   "status":1,
   "msg":"Success",
   "result":{  
      "current_page":1,
      "data":[  
         {  
            "id":3,
            "name":"Sooraj Account II",
            "email":"<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="d7a4b1b3a4b197a4b1b3b1f9b4b8ba">[email protected]</a>",
            "phone":"2134234234",
            "send_on":"17 \/ Apr \/ 2019",
            "listing_heading":"Listing three1",
            "listing_id":2
         }
      ],
      "first_page_url":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker?page=1",
      "from":1,
      "last_page":2,
      "last_page_url":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker?page=2",
      "next_page_url":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker?page=2",
      "path":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker",
      "per_page":1,
      "prev_page_url":null,
      "to":1,
      "total":2
   }
}

In my Angular code, I'm trying to access this result set as follows:

<ng-container *ngFor="let brkrleads of result.data">
....
</ng-container>

However, when I attempt to use result.data, I encounter the following error:

BrokerleadsComponent.html:70 ERROR TypeError: Cannot read property 'data' of undefined

I'm puzzled by this error and would appreciate any assistance in resolving it.

Answer №1

To store the information, initialize result={} and then insert the data.

I've generated a StackBlitz link for reference. Feel free to check it out here: StackBlitzLink

I trust this will prove beneficial.

Answer №2

To properly initialize your component class, make sure to define the property result={} at the start and assign a value to it when you receive the actual data.

Answer №3

It is likely that the result's value has not been set. To handle this, consider using the optional chaining operator.

<ng-container *ngFor="let brkrleads of result?.data">

Answer №4

The JSON data provided is in the form of an object, which essentially represents objects in a structured way.

{  
   "status":1,
   "msg":"Success",
   "result":{  
      "current_page":1,
      "data":[  
         {  
            "id":3,
            "name":"Sooraj Account II",
            "email":"<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="81f2e7e5f2d689cfe7e7bffeedbfc190868e8b92ee828e8c">[email protected]</a>",
            "phone":"2134234234",
            "send_on":"17 \/ Apr \/ 2019",
            "listing_heading":"Listing three1",
            "listing_id":2
         }
      ],
      "first_page_url":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker?page=1",
      "from":1,
      "last_page":2,
      "last_page_url":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker?page=2",
      "next_page_url":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker?page=2",
      "path":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker",
      "per_page":1,
      "prev_page_url":null,
      "to":1,
      "total":2
   }
}

This object currently does not have a designated name or reference. It should be assigned to a variable so it can be easily referenced elsewhere as needed. For instance,

var response = {  
   "status":1,
   "msg":"Success",
   "result":{  
      "current_page":1,
      "data":[  
         {  
            "id":3,
            "name":"Sooraj Account II",
            "email":"<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="f88b9e9cbb92969db8cb94bd9fa69297919eb89d83ec808c8e">[email protected]</a>",
            "phone":"2134234234",
            "send_on":"17 \/ Apr \/ 2019",
            "listing_heading":"Listing three1",
            "listing_id":2
         }
      ],
      "first_page_url":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker?page=1",
      "from":1,
      "last_page":2,
      "last_page_url":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker?page=2",
      "next_page_url":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker?page=2",
      "path":"http:\/\/localhost:8000\/api\/auth\/getLeadsByBroker",
      "per_page":1,
      "prev_page_url":null,
      "to":1,
      "total":2
   }
}

Once assigned to a variable, this object can be easily manipulated and used within component templates as required. For example,

<ng-container *ngFor="let brkrleads of response.result.data">
.....
</ng-container>

I hope that clarifies things for you.

Answer №5

If you want to initialize your result variable as empty beforehand, you can do so like this:

result={}

Alternatively, you can place your ng-container within another element that has an ngIf directive:

<div *ngIf="result">
  <ng-container *ngFor="let brkrleads of response.result.data">
    ...
  </ng-container>
</div>

Keep in mind that you cannot use the *ngIf directly on the ng-container itself due to the presence of the *ngFor, as only one attribute prefixed with * is allowed per element.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Creating a mapping for a dynamic array of generic types while preserving the connection between their values

In my code, I have a factory function that generates a custom on() event listener tailored to specific event types allowed for user listening. These events are defined with types, each containing an eventName and data (which is the emitted event data). My ...

Angular Universal and WebSockets: A seamless connection

I'm currently facing an issue with incorporating websockets into a server that is utilizing angular universal. It seems like express is intercepting my request before it reaches the sockets, but I could be mistaken. Upon inspecting in chrome, I encou ...

Testing NestJS Global ModulesExplore how to efficiently use NestJS global

Is it possible to seamlessly include all @Global modules into a TestModule without the need to manually import them like in the main application? Until now, I've had to remember to add each global module to the list of imports for my test: await Tes ...

Electron does not have the capability to utilize Google's Speech to Text engine

I am trying to connect my microphone with the Google Speech to Text engine. I came across this page and copied the code into my renderer.ts file, uncommented the lines with const, but when I run it, I encounter an error at line 7 (const client = new speech ...

Is it possible to manipulate an Angular #variableName in order to retrieve an ElementRef for an HTML element?

Suppose I have a scenario where I create a button like this: <button #myButton>My Button</button> ...and then use ViewChild in the following way: @ViewChild('myButton', { static: true }) createButton: ElementRef; In this case, creat ...

Have you noticed the issue with Angular's logical OR when using it in the option attribute? It seems that when [(ngModel)] is applied within a select element, the [selected] attribute is unable to change

Within the select element, I have an option set up like this: <option [selected]=" impulse === 10 || isTraining " value="10">10</option> My assumption was that when any value is assigned to impulse and isTraining is set to true, the current o ...

Using variables in string interpolation

I have been attempting to showcase a react-table cell in a customized manner: public displayBooksTable() { return <div> <ReactTable data={this.props.books} columns={[{ column ...

Tips on performing a join query in Firebase Firestore

I need help figuring out how to merge data from two different collections in Firestore based on the `uid`. One collection is for reviews, each of which includes a unique `uid`. I want to match this `uid` with users' details such as `username` and `pho ...

Revitalize access token with Keycloak in Javascript

I am currently working with keycloak-js version 8.0.1 and have a function called getToken that checks if the token is expired. If it is expired, the function refreshes it; otherwise, it returns the current token. The issue I am facing is that even though t ...

Working with Django Rest Framework and Angular 2 to handle the simultaneous upload of multiple files

I'm currently utilizing Django Rest Framework for the backend of my application, with Angular 2 serving as the frontend. In my Angular page, I have a form creation function: createResourcesForm() { this.resourcesForm = this.formBuilder.group({ ...

Error: Bootstrap CSS missing from app created with create-react-app-ts

I have a React application that was initially set up using create-react-app-ts. Although I have included bootstrap and react-bootstrap for navigation, the CSS styling from Bootstrap does not seem to be applied properly. The links do not display any styling ...

Discover the complete guide on incorporating a JavaScript library with additional dependencies in Angular 2

I am a beginner with angular 2 and I am attempting to integrate the Miso Dataset JavaScript library into my angular 2 project. The Miso library requires other JavaScript libraries as dependencies. Although I have included all the necessary JavaScript file ...

The Angular frontend application with proxy configuration is sending requests to the incorrect backend URL

My application is using Angular 11.0.6 as the front end, deployed on IIS and configured for mywebsite.com (port 80). The backend consists of a dotnet core web API deployed on IIS and configured for my.server.ip.address:190. Both the front end and back end ...

Using ngClass to dynamically compare a single number with an array of numbers in Angular

Take a look at this: [ngClass]="{className: singleNumber == arrayOfNumbers} Is there a way to compare 1 === [1,2,3,4] ? It seems to work if I use arrayOfNumbers[0] ...

Organize data into groups by value range using RxJS within an Angular application

Looking to organize the raw data array [ {bugid: b1 , state: 'foo', days: 2}, {bugid: b2, state: 'bar', days: 41}, {bugid: b3, state: 'foo', days: 45} ] Trying to group the data with RxJS in a specific format { &apo ...

The ultimate guide to mastering Angular routing techniques

I'm currently working on a web application project to learn Angular and SpringBoot. Everything was going smoothly until I encountered a strange issue. I set up the routing correctly so that http://localhost:4200 takes me to the home page, and navigati ...

RxJS: the art of triggering and handling errors

This is more of a syntax question rather than a bug I'm facing. The process is straightforward: Send an HTTP request that returns a boolean value If the boolean is true, proceed If the boolean is false, log a warning and stop the flow. To handle ...

"The issue persists in Angular 5 - I am using ngOnInit to fetch my object from firestore, but surprisingly the view does not reflect any

After working with Angular 5 and Firestore, I encountered an interesting issue. When retrieving my document and checking it using console.log(this.assets) in ngOnInit(), everything seems fine. However, a strange thing happens during a page reload: if I qui ...

Angular: Utilizing property interpolation from fetched JSON

As I attempt to create a test questionnaire using a json response, I encounter errors in the console stating 'Cannot read property 'Title' of undefined'. It seems like the string interpolation is trying to occur before receiving the res ...

Troubleshooting a 400 error when trying to authenticate with Firebase using AngularFire2

Authentication through Google has been enabled in the console: https://i.sstatic.net/Kkdh3.png Here is the login code: import { Component, OnInit } from '@angular/core'; import { AngularFire, AuthProviders } from 'angularfire2'; @Com ...