post

suspend fun post(data: Any, options: Resource.PostOptions? = definedExternally): Any?(source)

Asynchronously posts data to the given resource. Returns a promise that will resolve to the result once loaded, or reject if the resource failed to load. The data is loaded using XMLHttpRequest, which means that in order to make requests to another origin, the server must have Cross-Origin Resource Sharing (CORS) headers enabled.

resource.post(data)
.then(function(result) {
// use the result
}).catch(function(error) {
// an error occurred
});

Return

a promise that will resolve to the requested data when loaded. Returns undefined if request.throttle is true and the request does not have high enough priority.

Parameters

data

Data that is posted with the resource.

See also