| 1 | import { consumeJson } from "./consumeJson.js" |
| 2 | import { exportaAHtml } from "./exportaAHtml.js" |
| 3 | |
| 4 | /** |
| 5 | * @param { string } url |
| 6 | * @param { Object } body |
| 7 | * @param { "GET" | "POST"| "PUT" | "PATCH" | "DELETE" | "TRACE" | "OPTIONS" |
| 8 | * | "CONNECT" | "HEAD" } metodoHttp |
| 9 | */ |
| 10 | export async function enviaJson(url, body, metodoHttp = "POST") { |
| 11 | return await consumeJson(fetch(url, { |
| 12 | method: metodoHttp, |
| 13 | headers: { |
| 14 | "Content-Type": "application/json", |
| 15 | "Accept": "application/json, application/problem+json" |
| 16 | }, |
| 17 | body: JSON.stringify(body) |
| 18 | })) |
| 19 | } |
| 20 | |
| 21 | exportaAHtml(enviaJson) |