AttachmentStore と CommentStore という 2 つのストアがあります。
export class AttachmentStore {
@observable attachments = []
}
export class CommentStore {
@observable comments = []
save_comment_and_attachment(comment, attachments) {
this.comments.push(comment);
//how can I push the attachment to the
//attachments observable
}
}
添付ファイルを CommentStore オブザーバブルの一部として宣言できることはわかっていますが、コメントストアから添付ファイルを更新する方法はありますか?