我试图将一个对象作为参数传递给发布请求,但我完全不知道该怎么做。
这是对象的外观。
const goodOrder = {
order: {
cupcakes: [
{
base: "vanillaBase",
toppings: ["sprinkles"],
frosting: "vanillaFrosting"
},
{
base: "redVelvetBase",
toppings: ["gummyBears"],
frosting: "redVelvetFrosting"
}
],
delivery_date: "Sat, 15 Sep 2018 21:25:43 GMT"
}
};
我想使用访存,但我可以使用任何东西。
答案 0 :(得分:4)
一些流行的方法是
获取API
使用fetch()
来发布JSON编码的数据。
fetch('https://example.com/order', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(goodOrder),
})
.then((response) => response.json())
.then((goodOrder) => {
console.log('Success:', goodOrder);
})
.catch((error) => {
console.error('Error:', error);
});
Axios
Axios是一个用于发出HTTP请求的开源库,因此您需要将其包含在项目中。您可以使用npm安装它,也可以使用CDN包含它。
axios({
method: 'post',
url: 'https://example.com/order',
data: goodOrder
})
.then((response) => {
console.log(response);
}, (error) => {
console.log(error);
});
答案 1 :(得分:1)
来自MDN:Using Fecth:
fetch('https://example.com/profile', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(goodOrder),
})