"未找到事件"尝试使用标记事件按钮向Google日历添加事件时

时间:2016-10-10 12:53:04

标签: wordpress google-calendar-api

我在Google日历上创建了一个活动,我试图嵌入一个按钮,为日历上的人们标记此活动。 它在桌面上运行良好,但在手机上却发出错误警告"未找到事件"。 我的日历是公开的,他的共享详细信息,事件是公开的,代码是这样的:

https://jsfiddle.net/4ch7n8xf/

{{1}}

非常想要一些帮助

1 个答案:

答案 0 :(得分:2)

这似乎与Android 6.0上的Google日历应用有关,请参阅href to "add to calendar" from web not working with native google calendar app on Android 6.0+

我的解决方案是使用备用链接结构,该结构不会提示移动用户在应用中打开: from django import forms from .models import Description, Bill class BForm(forms.ModelForm): class Meta: db_table = 'inventory_bill' model = Bill fields = ('party', 'inovice', 'amount','image','image_caption') 。在该页面上会弹出一条警告,表示在移动设备上无法完美呈现,因为它是桌面视图,但它可以正常工作。