Hallo zusammen,
ich versuche mich gerade an jquery und habe ein Problem.
ich greife eine API ab:
$.ajax(settings).done(function (response) {
console.log(response);
});
Liefert mir in der Google Console folgendes:
deviceStatus ist ja vermutlich kein Array
EventStatus List scheint eines zu sein.
Kann mir jemand einen Tipp geben wie ich hier weiter komme?
Irgendwie müsste ich ja zum beispiel mit response['deviceStatus']['id'] ab einen Wert kommen und mit
response['eventStatusList'][1] zum Beispiel an das Array. Da gibt es dann die Unterpunkte:
1:
eventData:
Stehe gerade voll auf dem Schlauch.
ich versuche mich gerade an jquery und habe ein Problem.
ich greife eine API ab:
$.ajax(settings).done(function (response) {
console.log(response);
});
Liefert mir in der Google Console folgendes:
- {modifyTimestamp: "..", deviceStatus: {…}, vehicleStatus: {…}, driverStatus: null, eventStatusList: Array(40)}
- deviceStatus: {id: "..", hardwareType: null, hardwareVersion: null, firmwareVersion: "", deviceGroupId: null, …} driverStatus: null
- eventStatusList: (40) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
- modifyTimestamp: ".."
- vehicleStatus: {id: "..", vin: null, tecDocMakeId: null, tecDocModelId: null, tecDocVehicleId: null, …}
- proto: Object
deviceStatus ist ja vermutlich kein Array
EventStatus List scheint eines zu sein.
Kann mir jemand einen Tipp geben wie ich hier weiter komme?
Irgendwie müsste ich ja zum beispiel mit response['deviceStatus']['id'] ab einen Wert kommen und mit
response['eventStatusList'][1] zum Beispiel an das Array. Da gibt es dann die Unterpunkte:
1:
eventData:
- createTimestamp: ""
- modifyTimestamp: ""
- unitId:
- unitType: ""
- value: ""
Stehe gerade voll auf dem Schlauch.