簡體   English   中英

對象屬性未定義

[英]Object properties are undefined

我從后端獲取了一些數據,我想利用這些數據。

由於某些原因,即使數據已經到達前端,當我嘗試訪問它們時,這些屬性仍未定義。

這是我嘗試打印它們時得到的


在此處輸入圖片說明


我看過類似的問題,但是我所看到的問題都沒有任何答案可以解決我的問題。

是什么原因造成的? 我用一個承諾來獲取數據(以防萬一)。


this.driverService.getDrivers()
  .then((data: any) => {
    console.log(data); // prints the data like it should
    console.log(data['driverDataForDriverList']); // prints undefined
    console.log(data.driverDataForDriverList); // prints undefined
    this.driversData = data['driverDataForDriverList']; // assigns undefined...
  });

請幫助,我是菜鳥。 謝謝。

嘗試console.log(data.data['driverDataForDriverList'])

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM