1. ホーム
  2. javascript

Uncaught DOMException: Window' の 'postMessage' の実行に失敗しました。オブジェクトをクローンできませんでした

2023-07-23 19:44:27

質問

を呼び出そうとしています。

parent.postMessage(obj, 'whatever');

をiframe内から実行すると、このエラーが発生します。 Uncaught DOMException: Failed to execute 'postMessage' on 'Window': An object could not be cloned.

どのように解決するのですか?

私が渡したオブジェクトはメソッドを持っていることがわかりました。 An object could not be cloned .

これを修正するためには、以下のようにします。

obj = JSON.parse(JSON.stringify(obj));
parent.postMessage(obj, 'whatever');