? ? ? ? ? ? window.addEventListener('message', (event) => {
? ? ? ? ? ? ? ? // 在這里處理從子頁面接收到的消息
? ? ? ? ? ? ? ? if (event.data.action === 'callParentMethod') {
? ? ? ? ? ? ? ? ? ? // 調(diào)用父頁面的方法
? ? ? ? ? ? ? ? ? ? this.parentMethod(event.data.data);
? ? ? ? ? ? ? ? }? ? ? ? ? ?
? ? ? ? ? ?}, false);
? ? ? ? ? ? parentMethod(data) {
? ? ? ? ? ? console.log('父級(jí)方法被調(diào)用了!!<怯摺!', data);
? ? ? ? ? ? ? ? // 在這里執(zhí)行你需要的操作
? ? ? ? ? ? ? ? this.getBasicInfor();? ? ? ? ? ?
? ? },
? ? ? ? ? ? callParent() {? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? var data = { action: 'callParentMethod', data: 'Hello from child' };?
? ? ? ? ? ? ? ? console.log("data參數(shù)===>",data);
? ? ? ? ? ? ? ? window.parent.postMessage(data); // 發(fā)送消息給父頁面
? ? ? ? ? ? },
傳送門:https://tongyi.aliyun.com/qianwen/share?shareId=adefd352-1ace-443a-b97d-88c8ffd62ae1
http://www.reibang.com/p/c9f849c90670