どのオブジェクトの状態に対しても変更トラッキングを実装する必要があります。 どうすれば実装できますか?例えばTypescriptでカスタムオブジェクトの変更トラッキング
:
let complexObject = {
/// ... mant many arrays and propertiess
}
let hash = convertToHash(complexObject)
let trackingArray = []
trackingArray.push(hash);
/// what from here and how to imlement it?
この質問はやや曖昧です。変更トラッキングとはどういう意味ですか?あなたが達成しようとしている最終目標は何ですか? –