答案 0 :(得分:1)
您已声明tailor: any[]
,它是一个数组,因此您应该像this.tailor[0].name
一样访问它。
如果tailor
是对象,则将其声明为tailor: any
并像this.tailor.name
这样访问。
注意:始终最好的做法是使用class
,interface
之类的适当类型或tailor : {name: string, phone_number: number}
之类的类型化对象对对象属性进行分组,而不要使用{ {1}}