Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

como colocar dados no firebase

// dá uma moral me seguindo no github, vamos fazer network! ^^ https://github.com/kkphoenixgx

// Isso serve para inicializar o app
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.6.1/firebase-app.js";
// Isso serve para importar o Banco de dados em si pelo getFirestore
// Para poder referenciar uma collection com o collection
// para adicionar um documento ao firebase com o addDoc
import { getFirestore, collection, addDoc} from "https://www.gstatic.com/firebasejs/9.6.1/firebase-firestore.js";

const firebaseconfig = "Aqui você passa o seu json de configuração"
const app = initializeApp(firebaseConfig);
const db = getFirestore(app);

const FilesRef = collection(db, 'O nome da coluna do firebase');

// no caso aqui eu criei uma function que eu vou exportar
export function addToFirestoreDB(fileJson, Reference){
    addDoc(Reference, fileJson);
}

// mas por via das dúvidas, você chamaria a função normalmente assim
addDoc(collection(filesRef, "seu arquivo .json")

// dá uma moral me seguindo no github, vamos fazer network! ^^ https://github.com/kkphoenixgx
Comment

PREVIOUS NEXT
Code Example
Javascript :: getx oninit 
Javascript :: line break in javascript in notification 
Javascript :: javascript audio navigator audio stream 
Javascript :: install svelte routing 
Javascript :: this.jsObject.functions is not a function 
Javascript :: ajaxstart not working in chrome 
Javascript :: join in array 
Javascript :: javascript function to sleep 
Javascript :: yup oneof 
Javascript :: fake delay in fetch 
Javascript :: curved lines on google maps usint react 
Javascript :: webpack test js or jsx 
Javascript :: onclick automatically called after 10 seconds 
Javascript :: get input string js 
Javascript :: fcm node 
Javascript :: install video-react 
Javascript :: json ld product schema 
Javascript :: ionicActionSheet decorator example 
Javascript :: js string to charcode array 
Javascript :: how to have jsx tellisense vscode 
Javascript :: opposite number js 
Javascript :: how a message persist in the localstorage in javascript 
Javascript :: schema mongoose 
Javascript :: bogo sort js 
Javascript :: .env file example react native 
Javascript :: twhat is a js promise 
Javascript :: Create A React State 
Javascript :: jquery get table 
Javascript :: javascript create a multidimensional array 
Javascript :: Find largest number from array by function in javascript 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =