0
我的「任何」類型的其內的多個對象的數組,因爲這樣應用到一個對象的函數:角2 - 在一個數組
//List of posts (array)
this.posts = [
//First Post (object)
{
userFirst: 'Teyah',
userLast: 'Tharpe',
postText: 'Good morning, everyone! Have a good day. :)',
//First Post's comments (array)
comments: [
//First Comment (object)
{
cFirstName: 'Jalen',
cLastName: 'Tharpe',
theirComment: 'Thank you'
},
//Second Comment (object)
{
cFirstName: 'Gerald',
cLastName: 'Matthews',
theirComment: 'Thank you! You do the same.'
}
]
},
//Second Post (object)
{
userFirst: 'Jordan',
userLast: 'Gibson',
postText: 'What is the move for today?',
comments: [
{
cFirstName: 'Joshua',
cLastName: 'Stewart',
theirComment: 'Party at my house!!!'
}
]
}
];
正如你可以看到,我有一個數組的帖子,其中包含對象,並在帖子對象中,我有一個評論列表。我試圖將comment()
函數應用於其中一個對象。說,posts[0]
。有人會告訴我,如果這在Angular 2的範圍內?如果是這樣,請幫助。
如需更多代碼/信息,請讓我知道。
謝謝。
你想做什麼? –
你是什麼意思「應用評論()函數」? –