MCPcopy Index your code
hub / github.com/plotly/dash / POST

Function POST

dash/dash-renderer/src/actions/api.js:20–29  ·  view source on GitHub ↗
(path, fetchConfig, body = {}, config)

Source from the content-addressed store, hash-verified

18}
19
20function POST(path, fetchConfig, body = {}, config) {
21 return fetch(
22 path,
23 mergeDeepRight(fetchConfig, {
24 method: 'POST',
25 headers: getCSRFHeader(config),
26 body: body ? JSON.stringify(body) : null
27 })
28 );
29}
30
31const request = {GET, POST};
32

Callers

nothing calls this directly

Calls 1

getCSRFHeaderFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…