问题描述
我正在尝试更新 firebase 数据库中的一些数据.但是我无法让 updateAPI 函数正常工作.我相信这与axios.put有关,url可能没有正确遍历数据?
I'm trying to update some data in a firebase database. However i am unable to get the updateAPI function to work properly. I believe it's something to do with axios.put, the url is probably not traversing the data correctly?
我尝试更改网址,但最终出现 OPTIONS 和 CORS 错误,这意味着网址不正确.
I have tried changing the url but end up with a OPTIONS and CORS errors which means the url is incorrect.
// API Function calls
async getAPI(){
const response = await axios.get('https://fir-test-euifhefibewif.firebaseio.com/todos.json')
console.log(response)
console.log(response.data)
}
async postAPI(){
const response = await axios.post('https://fir-test-euifhefibewif.firebaseio.com/todos.json', {name: notesAll})
console.log(response)
console.log(response.data)
}
async deleteAPI(){
const response = await axios.delete('https://fir-test-euifhefibewif.firebaseio.com/todos.json')
console.log(response)
console.log(response.data)
}
async updateAPI(){
const response = await axios.put('https://fir-test-euifhefibewif.firebaseio.com/todos/-LVYEw6KTltVoEkPeuxY/name/0', {note})
console.log(response)
console.log(response.data)
}
// Notes notesAll
const notesAll = [
{
"name": "user1",
"race": "human"
},
{
"name": "user2",
"race": "human"
},
{
"name": "user3",
"race": "human"
},
{
"name": "user4",
"race": "human"
},
{
"name": "user5",
"race": "human"
}
]
// Test data
const note = [
{
name: 'Test',
race: 'Test'
}
]
// Firebase database example
{
"todos": {
"-LVYIfktKR6fa6ish1aw": {
"name": [
{
"name": "user1",
"race": "human"
},
{
"name": "user2",
"race": "human"
},
{
"name": "user3",
"race": "human"
},
{
"name": "user4",
"race": "human"
},
{
"name": "user5",
"race": "human"
}
]
}
}
}
所有代码需要做的就是更新对象数组中的一些数据.
All the code needs to do is update some data inside of an array of objects.
推荐答案
尝试:
async updateAPI(){
const response = await axios.put('https://fir-test-euifhefibewif.firebaseio.com/todos/-LVYEw6KTltVoEkPeuxY/name/0', note)
console.log(response)
console.log(response.data)
}
// Test data
const note = {
name: 'Test',
race: 'Test'
}
要使用 REST 写入 Firebase 数据库,网址必须以 .json 结尾.所以:
To write to Firebase Database using REST, the URL must end in .json. So:
url = yourUrl + ".json";
在此处查找更多信息:https://firebase.google.com/文档/数据库/休息/保存数据
这篇关于使用 React 和 Axios 更新 Firebase 中的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!