react-version #1

Merged
memartel merged 290 commits from react-version into main 2023-11-04 09:48:15 -04:00
Showing only changes of commit 33596177f6 - Show all commits

View File

@@ -60,17 +60,20 @@ export default function App() {
else {
data.prodQuant ={};
cart.map((p) => {
data.prodQuant[p.id] = p.quantity;
data.prodQuant[`${p.id}`] = p.quantity;
});
console.log(data);
const jsonData = JSON.stringify(data);
console.log(jsonData);
fetch("https://localhost:7292/api/Invoice", {
mode: "cors",
method: "POST",
credentials: "include",
headers:{
'Content-Type': 'application/json'
},
body: jsonData
}).then((response) => {
console.log(response);