提取API上的ERR_ABORTED 415不支持的媒体类型-ReactJS

问题描述

我正在尝试向API REST发出POST请求,但在此代码上收到此错误(ERR_ABORTED 415(不受支持媒体类型)):

handleSubmit = event => {
    event.preventDefault();
    fetch('https://volgarest.herokuapp.com/volga-rest/shops/log-up/',{
        method : 'POST',body : JSON.stringify(this.state),headers: {
            'Content-Type' : 'application/json','Accept' : 'application/json',},mode : 'no-cors'            
    })
    .then(response => console.log(response))
    .catch(error => console.error(error))
};

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)