getEvents()
Description
Gets a promise with the events data
info
The getEvents()
method is a part of the RestDataProvider service intended for working with server
Usage
getEvents(): promise;
Returns
The getEvents()
method sends a request to the server by the GET method and returns a promise with the events data
Example
const url = "https://some_backend_url";
const restProvider = new eventCalendar.RestDataProvider(url);
Promise.all([
restProvider.getEvents(),
restProvider.getCalendars()
]).then(([events, calendars]) => {
const calendar = new eventCalendar("#root", {
events,
calendars
});
calendar.api.setNext(restProvider);
});
info
You need to include RestDataProvider into the Event Bus order to perform operations with data (adding, deleting etc) and send the corresponding requests to the server
Related articles: Working with server