如何接收在iframe中发布到ssr react应用的消息

时间:2019-05-13 10:39:36

标签: reactjs iframe ssr

am尝试将消息发布到域中,该域是服务器端呈现的react应用程序。发布消息后,我无法在服务器端收到消息

尽管我可以发布消息,但是在服务器端渲染中我无法访问该窗口。有没有解决办法

const attributes = {
    src: "demo.com",
    width: "100%",
    height: "175",
    frameBorder: 1, // show frame border just for fun...
};


const postMessageData = "hello iframe";

const onReceiveMessage = () => {
    console.log("onReceiveMessage");
};

const onReady = () => {
    console.log("onReady");
};

return (
    <IframeComm
        attributes={attributes}
        postMessageData={postMessageData}
        handleReady={onReady}
        handleReceiveMessage={onReceiveMessage}
    />
);

父应用: postMessageData = {数据}

我需要在使用iframe进行集成的域中获得此帖子消息

0 个答案:

没有答案