日历 iframe 不显示所有最新创建的事件(尤其是共享日历事件)

我已经设法将 Google 日历嵌入到 React 组件中,但问题是我可以观察到嵌入的日历没有获得添加到使用gapi.


日历 iframe 网址是这个 https://calendar.google.com/calendar/b/1/embed?src={VALID_CALENDAR_EMAIL}


日历.util.js


const CALENDAR_EMBED_BASE_URL =

  'https://calendar.google.com/calendar/embed?src=';


export const getCalendarEmbedUrl = email =>

  `${CALENDAR_EMBED_BASE_URL}${email}`;


CalendarIframe.jsx组件


import React, { PureComponent } from 'react';

import { getCalendarEmbedUrl } from 'calendar.util.js';


class CalendarIframe extends PureComponent {

  render() {

    const { email } = this.props;

    const embedUrl = getCalendarEmbedUrl(email);


    return (

      <div className="calendarEmbedWrapper">

        <iframe

          title="Calendar"

          id="calendarEmbed"

          width="100%"

          src={embedUrl}

        />

      </div>

    );

  }

}


有什么方法可以确保嵌入式日历与其应有的一样动态?


猛跑小猪
浏览 169回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript