Property 'data' does not exist on type 'HttpEvent'

前端 未结 3 857
一个人的身影
一个人的身影 2020-12-21 00:35

I have a setup like this

  • api.service (wraps the httpClient Module)
  • customer.service

the api service get looks like this:



        
3条回答
  •  攒了一身酷
    2020-12-21 01:36

    The solution is to use the new way of getting the json data....

    const customer = res['data'];
    

提交回复
热议问题