我试图在Angular应用中显示一个对话列表,然后在每个对话标题下显示这些对话中包含的消息。
这是我的最新代码-
HTML:
<div
class="card"
style="width: 18rem;"
*ngFor="let conversation of myConversations"
>
<div class="card-body">
<h5 class="card-title">{{ conversation.conversationTitle }}</h5>
<h6 class="card-subtitle mb-2 text-muted">
Conversation ID: {{ conversation.conversationId }}
</h6>
<p *ngFor="let message of myConversationMessages" class="card-text">
{{ message.messageText }}
</p>
</div>
TS:
myConversations: IConversation[] = [];
myConversationMessage: IConversationMessages = {
conversationId: 0,
messageId: 0,
messageText: ''
};
myConversationMessages: IConversationMessages[] = [];
constructor(private conversationService: ConversationService) {}
ngOnInit() {
this.conversationService.getConversations().subscribe(conversations => {
this.myConversations = conversations;
this.displayMessages();
});
}
displayMessages() {
for (let i of this.myConversations) {
for (let j of i.messages) {
this.myConversationMessages.push({
conversationId: i.conversationId,
messageId: j.messageId,
messageText: j.messageText
});
}
}
console.log(this.myConversationMessages);
}
这是我目前可以显示的内容:
每个对话都有其自己的卡,但是所有对话都会重复发送消息,无论它们连接到哪个对话。
我认为我需要对内部的 ngFor 进行一些更改,但是我不确定要进行哪些更改。关于需要进行哪些更改的任何想法?谢谢!
此外,这是关联的JSON:
[
{
"conversationId": 1,
"conversationTitle": "My first convo",
"messages": [
{
"messageId": 1,
"messageText": "Hi"
},
{
"messageId": 2,
"messageText": "Hello"
}
]
},
{
"conversationId": 2,
"conversationTitle": "My second convo",
"messages": [
{
"messageId": 1,
"messageText": "test"
},
{
"messageId": 2,
"messageText": "testing"
}
]
}
]
答案 0 :(得分:5)
基于您提供的JSON,您应该能够使用*ngfor
内的*ngfor
来读取消息。我已经删除了一些元素,但以下内容应为您提供所需的结果。基于问题中的JSON。
解决方案
<div class="card" style="width: 18rem;" *ngFor="let conversation of myConversations">
<div class="card-body">
<h5 class="card-title">
{{ conversation.conversationTitle }}
</h5>
<h6 class="card-subtitle mb-2 text-muted"> Conversation ID:
{{ conversation.conversationId }}
</h6>
<div *ngFor="let message of conversation.messages" class="card-text">
<span>
{{ message.messageText }}
</span>
</div>
</div>
</div>
如果JSON是初始的myConversations
,那么您将不需要再对该数据做任何事情,因为它已经足够使用。