我正在一个项目中,需要在iframe中创建一个对象,然后将其发送到父窗口。
问题是postMessage
失败,因为对象具有功能(DataCloneError
),因此无法克隆(callback
)。
更为复杂的是,这是一种循环关系,其中按钮列表包含按钮,每个按钮都有对其父列表的引用。
如果这是使用JSON.stringify
而不是结构化克隆,则可以覆盖按钮上的toJSON
并避免发送callback
并将list
替换为listId
到避免循环参考情况。是否有与toJSON
等效的结构化克隆,可以在保持循环关系的同时忽略callback
或其他解决方案?
这是情况的大致要点,错误可重现:
class ButtonList {
constructor() {
this.buttons = [];
}
addButton(button) {
if (!this.buttons.includes(button)) {
this.buttons.push(button);
button.setList(this);
}
return this;
}
}
class Button {
setList(list) {
if (!list) return this;
if (this.list !== list) {
this.list = list;
list.addButton(this);
}
return this;
}
setCallback(callback) {
this.callback = callback;
return this;
}
getCallback() {
return this.callback;
}
runCallback() {
if (!this.callback) return this;
this.callback();
return this;
}
}
const list = new ButtonList();
const button = new Button().setList(list).setCallback(() => console.log('Hello'));
window.postMessage(list, '*');
// DataCloneError: The object could not be cloned.
父窗口不需要知道回调,但是需要知道其他任何属性。
答案 0 :(得分:1)
使用Object.assign
创建一个具有覆盖属性的新对象,并将其通过postMessage
发送。
const foo = {
bar: 'bar',
list: { bla: 'bla' },
baz: function() {
console.log('baz')
}
}
const serializable = Object.assign({}, foo, {
list: 3,
baz: undefined
})
console.log(serializable)