Ionic Error v.context.$implicit is undefined

后端 未结 2 597
野的像风
野的像风 2021-01-21 04:49

I have the error in my code. The error says like this: v.context.$implicit is undefined

The problem is, sometimes it error, and sometimes it doesn’t… Can somebody expla

2条回答
  •  走了就别回头了
    2021-01-21 04:51

    i can't really help if i don't see you're TS code. The same problem occured to me and my mistake was to try to insert a new data in an array like result[i] = data[i] and not like result.push(data[i]) which is actually correct. Hope it helps !

提交回复
热议问题