我在我的网站上使用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
保存在我的数据库中以进行持久显示?