admin管理员组文章数量:1347408
I'm trying to listen for a postmessage in my react class. It isn't working.
export default class App extends React.Component {
constructor(props) {
super(props);
this.handleMessage = this.handleMessage.bind(this);
}
ponentDidMount(){
window.addEventListener("onmessage", this.handleMessage);
}
ponentWillUnmount() {
window.removeEventListener('onmessage', this.handleMessage);
}
handleMessage(e){
console.log('me?')
}
}
I send the message like this:
window.opener.postMessage('a message', '*');
I know the message is getting to the window, because I can successfully listen to it in the plain JS file that loads the react app. However listening for it in react as above does not work.
Why isn't my listener every being triggered, how can I debug it?
I'm trying to listen for a postmessage in my react class. It isn't working.
export default class App extends React.Component {
constructor(props) {
super(props);
this.handleMessage = this.handleMessage.bind(this);
}
ponentDidMount(){
window.addEventListener("onmessage", this.handleMessage);
}
ponentWillUnmount() {
window.removeEventListener('onmessage', this.handleMessage);
}
handleMessage(e){
console.log('me?')
}
}
I send the message like this:
window.opener.postMessage('a message', '*');
I know the message is getting to the window, because I can successfully listen to it in the plain JS file that loads the react app. However listening for it in react as above does not work.
Why isn't my listener every being triggered, how can I debug it?
Share Improve this question asked May 21, 2021 at 16:16 WillWill 4,7443 gold badges40 silver badges70 bronze badges 2- Make sure that when you send the message the App ponent is mounted – lissettdm Commented May 21, 2021 at 16:19
- Also the addEventListener should be message not onmessage – lissettdm Commented May 21, 2021 at 16:29
1 Answer
Reset to default 9The event's name should be message
and not onmessage
:
window.addEventListener("message", this.handleMessage);
See: The dispatched event
本文标签: javascriptListen to windowonmessage in React ComponentStack Overflow
版权声明:本文标题:javascript - Listen to window.onmessage in React Component - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743836369a2547471.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论