我正在构建一个可以订购项目的React Native应用程序。
由于我目前的立场,我可以从我的模型API
中获取以下内容- 项目
- 图片
- 图标
但是,我无法发布到其他可模拟的API(发布)
我的帖子中只有两个标题:Accept&内容类型
我正在使用Expo开发我的应用
我期待什么:
能够发布到我的模拟API
我得到了什么:
未接触的承诺拒绝(ID:0);错误:网络错误
我的帖子请求
handleSubmit = () => {
this.setState({
orderRestrauntId: this.props.RestrauntId,
orderValue: this.state.value,
orderProducts: this.props.products,
orderTotalPrice: this.props.totalPrice,
})
axios.post(
'https://demo3381137.mockable.io/orders',
{
"orderId": "1",
"RestrauntId": this.state.orderRestrauntId,
"orderKey": "F3SAR566T",
"userId": "1",
"paymentStatus": "approved",
"preparing": "approved",
"orderStatus": "approved",
"paymentMethod": this.state.orderValue,
"totalPrice": this.state.orderTotalPrice,
"order": [
{
"product" : "burger",
"qty" : "5"
},
{
"product" : "pizza",
"qty" : "5"
},
{
"product" : "fries",
"qty" : "5"
}
]
},
{
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
}
}
);
console.log('submit');
}
gabriele petrioli在我的url https://http://
中遇到了错误,应该是 https://