Int_Prog/лаб3/lab3/public/scripts/api/createObject.js
2024-01-19 01:24:45 +04:00

13 lines
295 B
JavaScript

import { serverPath } from "../variables.js";
export async function createObject(objectJSON) {
const response = await fetch(`${serverPath}/products`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: objectJSON,
});
return response.json();
}