我用qsort(dataset, total, sizeof(*dataset), num_compare);
中的import java.util.Scanner;
class SwiCas {
public static void main(String as[]) {
Scanner s= new Scanner(System.in);
char a=s.next().charAt(0);//this line shows how to take character input in java
switch(a) {
case 'a':
System.out.println("Vowel....");
break;
case 'e':
System.out.println("Vowel....");
break;
case 'i':
System.out.println("Vowel....");
break;
case 'o':
System.out.println("Vowel....");
break;
case 'u':
System.out.println("Vowel....");
break;
case 'A':
System.out.println("Vowel....");
break;
case 'E':
System.out.println("Vowel....");
break;
case 'I':
System.out.println("Vowel....");
break;
case 'O':
System.out.println("Vowel....");
break;
case 'U':
System.out.println("Vowel....");
break;
default:
System.out.println("Consonants....");
}
}
}
和jquery
开发了事件条目。现在,我想与此添加Google日历同步。我怎样才能做到这一点?我已经阅读了文档。在events参数中,我必须添加事件:
php
但是我已经添加了full-calendar io
文件({ googleCalendarId: 'abcd1234@group.calendar.google.com' }
)参数。我怎么能同时使用它们?
php
答案 0 :(得分:0)
您可以通过使用“事件源”功能来执行此操作。这样,您就可以为日历事件定义多个数据源。
只需替换
events: 'load.php'
使用
eventSources: [
'load.php',
{ googleCalendarId: 'abcd1234@group.calendar.google.com' }
]
现在,您的日历将从两个位置加载事件。它记录在这里:https://fullcalendar.io/docs/eventSources。
您还必须确保执行https://fullcalendar.io/docs/google-calendar中记录的其他设置步骤,才能使Google日历供稿正常工作。