在React中将响应数据捕获到iframe

时间:2018-05-14 20:33:01

标签: javascript reactjs iframe request response

我在我的网站上使用Hubspot meeting调度程序iframe。

我将以下方式添加到react-app

componentWillMount(){
  this.loadScheduler();
}

loadScheduler() {
  const script = document.createElement("script")
  script.src = "https://static.hsappstatic.net/MeetingsEmbed/ex/MeetingsEmbedCode.js"
  script.async = true;
  document.body.appendChild(script);
  script.onload = () => {this.setState({ scriptLoaded: true })}
}

render() {
  if (this.state.scriptLoaded) {
    return(<div>
             <iframe src="https://app.hubspot.com/meetings/<name>/<calendar>?embed=true" width="600" height="600"></iframe>
           </div>)
  }
}

现在我的iframe正常运行,并允许用户在预定日历上安排日期和时间。

作为对安排特定日期/时间的响应,iframe接收响应显示的信息。

有没有办法可以捕获这些信息并将date/time保存在我的数据库中以进行持久显示?

0 个答案:

没有答案