我正在尝试使用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))
我在这里做什么错了?