Firebase实时数据库上的Axios PUT请求返回400错误请求错误

时间:2019-12-13 13:18:44

标签: reactjs firebase-realtime-database react-redux axios

我正在尝试使用axios在react-redux动作中编辑Firebase数据库中的字段,但是导致400错误。 我的数据库:

git rebase --onto C master feature

我的要求:

data:{
    key1:{name:'foo',age:12},
    key2:{name:'bar',age:15},
}

这将返回“请求失败,状态码为400”。 但是在邮递员中效果很好,如果我设置的话也可以

const path = baseURL+'/data/key1/name.json'
const newName = 'John'
const config = {
  headers: {
    "Accept":"application/json, text/plain, */*",
    "Content-Type":"application/x-www-form-urlencoded"
  }
}

axios.put(path, newName,config)
.then(res=>console.log(res))
.catch(err=>console.log(err))

我在这里做什么错了?

0 个答案:

没有答案