Retrieve entire document as array of entriesHow to loop through a plain JavaScript object with the objects as members?How do I check if an array includes an object in JavaScript?How to append something to an array?How to insert an item into an array at a specific index (JavaScript)?$(document).ready equivalent without jQuerySort array of objects by string property valueHow do I empty an array in JavaScript?Loop through an array in JavaScriptHow to check if an object is an array?How do I remove a particular element from an array in JavaScript?For-each over an array in JavaScript?
Do simulator games use a realistic trajectory to get into orbit?
Is open-sourcing the code of a webapp not recommended?
Is it possible to 'live off the sea'
Orange material in grout lines - need help to identify
What are the peak hours for public transportation in Paris?
What is the actual quality of machine translations?
Is an early checkout possible at a hotel before its reception opens?
Does a 3rd-level Wolf Totem barbarian get advantage against enemies when an ally is within 5 feet of the enemy?
How did they achieve the Gunslinger's shining eye effect in Westworld?
PhD - Well known professor or well known school?
What makes Ada the language of choice for the ISS's safety-critical systems?
My coworkers think I had a long honeymoon. Actually I was diagnosed with cancer. How do I talk about it?
Do any instruments not produce overtones?
Inconsistent behavior of compiler optimization of unused string
How do I write "Show, Don't Tell" as a person with Asperger Syndrome?
Can anyone identify this tank?
Indirectly defined macros: Undefined macro with "@" does not trigger compile error
Soft question: Examples where lack of mathematical rigour cause security breaches?
Understanding the TeXlive release cycle: What is the meaning of a TeXlive release and is it ever 'finished'?
What can I, as a user, do about offensive reviews in App Store?
Different pedals/effects for low strings/notes than high
How to tell your grandparent to not come to fetch you with their car?
How to build suspense or so to establish and justify xenophobia of characters in the eyes of the reader?
When conversion from Integer to Single may lose precision
Retrieve entire document as array of entries
How to loop through a plain JavaScript object with the objects as members?How do I check if an array includes an object in JavaScript?How to append something to an array?How to insert an item into an array at a specific index (JavaScript)?$(document).ready equivalent without jQuerySort array of objects by string property valueHow do I empty an array in JavaScript?Loop through an array in JavaScriptHow to check if an object is an array?How do I remove a particular element from an array in JavaScript?For-each over an array in JavaScript?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a collection in Firestore with the following structure:
Publications
PubData <---- This is a Doc
1892872 <---- This is a map
Name: abc
Id: 123
1892875 <---- This is a map
Name: abc
Id: 123
Querying the PubData document:
fb.publicationsCollection
.doc("pubdata")
.get()
.then(res =>
let pubData = res.data();
)
returns the following data:
1892872: …, 1892875: …
How can I return this as an array, so I can iterate over it with a for loop?
javascript firebase google-cloud-firestore
add a comment |
I have a collection in Firestore with the following structure:
Publications
PubData <---- This is a Doc
1892872 <---- This is a map
Name: abc
Id: 123
1892875 <---- This is a map
Name: abc
Id: 123
Querying the PubData document:
fb.publicationsCollection
.doc("pubdata")
.get()
.then(res =>
let pubData = res.data();
)
returns the following data:
1892872: …, 1892875: …
How can I return this as an array, so I can iterate over it with a for loop?
javascript firebase google-cloud-firestore
add a comment |
I have a collection in Firestore with the following structure:
Publications
PubData <---- This is a Doc
1892872 <---- This is a map
Name: abc
Id: 123
1892875 <---- This is a map
Name: abc
Id: 123
Querying the PubData document:
fb.publicationsCollection
.doc("pubdata")
.get()
.then(res =>
let pubData = res.data();
)
returns the following data:
1892872: …, 1892875: …
How can I return this as an array, so I can iterate over it with a for loop?
javascript firebase google-cloud-firestore
I have a collection in Firestore with the following structure:
Publications
PubData <---- This is a Doc
1892872 <---- This is a map
Name: abc
Id: 123
1892875 <---- This is a map
Name: abc
Id: 123
Querying the PubData document:
fb.publicationsCollection
.doc("pubdata")
.get()
.then(res =>
let pubData = res.data();
)
returns the following data:
1892872: …, 1892875: …
How can I return this as an array, so I can iterate over it with a for loop?
javascript firebase google-cloud-firestore
javascript firebase google-cloud-firestore
asked Mar 24 at 16:11
ogotogot
8612
8612
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can iterate an object's properties with a foreach loop:
const pubData = res.data();
Object.keys(pubData).forEach(function(key)
// key is 1892872, pubData[key] is the associated object
console.log(key, pubData[key]);
);
Since you didn't really say what exactly you wanted the array to contain, I'll leave it up to you to figure out how the keys and values of the document's map should be represented in that final array.
add a comment |
Since you asked for an array of entries, you can use Object.entries
:
fb.publicationsCollection
.doc("pubdata")
.get()
.then(res =>
let pubData = Object.entries(res.data());
// pubData will look like:
// [["1892872", …], ["1892875", …]]
)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325799%2fretrieve-entire-document-as-array-of-entries%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can iterate an object's properties with a foreach loop:
const pubData = res.data();
Object.keys(pubData).forEach(function(key)
// key is 1892872, pubData[key] is the associated object
console.log(key, pubData[key]);
);
Since you didn't really say what exactly you wanted the array to contain, I'll leave it up to you to figure out how the keys and values of the document's map should be represented in that final array.
add a comment |
You can iterate an object's properties with a foreach loop:
const pubData = res.data();
Object.keys(pubData).forEach(function(key)
// key is 1892872, pubData[key] is the associated object
console.log(key, pubData[key]);
);
Since you didn't really say what exactly you wanted the array to contain, I'll leave it up to you to figure out how the keys and values of the document's map should be represented in that final array.
add a comment |
You can iterate an object's properties with a foreach loop:
const pubData = res.data();
Object.keys(pubData).forEach(function(key)
// key is 1892872, pubData[key] is the associated object
console.log(key, pubData[key]);
);
Since you didn't really say what exactly you wanted the array to contain, I'll leave it up to you to figure out how the keys and values of the document's map should be represented in that final array.
You can iterate an object's properties with a foreach loop:
const pubData = res.data();
Object.keys(pubData).forEach(function(key)
// key is 1892872, pubData[key] is the associated object
console.log(key, pubData[key]);
);
Since you didn't really say what exactly you wanted the array to contain, I'll leave it up to you to figure out how the keys and values of the document's map should be represented in that final array.
answered Mar 24 at 16:17
Doug StevensonDoug Stevenson
92.2k10105125
92.2k10105125
add a comment |
add a comment |
Since you asked for an array of entries, you can use Object.entries
:
fb.publicationsCollection
.doc("pubdata")
.get()
.then(res =>
let pubData = Object.entries(res.data());
// pubData will look like:
// [["1892872", …], ["1892875", …]]
)
add a comment |
Since you asked for an array of entries, you can use Object.entries
:
fb.publicationsCollection
.doc("pubdata")
.get()
.then(res =>
let pubData = Object.entries(res.data());
// pubData will look like:
// [["1892872", …], ["1892875", …]]
)
add a comment |
Since you asked for an array of entries, you can use Object.entries
:
fb.publicationsCollection
.doc("pubdata")
.get()
.then(res =>
let pubData = Object.entries(res.data());
// pubData will look like:
// [["1892872", …], ["1892875", …]]
)
Since you asked for an array of entries, you can use Object.entries
:
fb.publicationsCollection
.doc("pubdata")
.get()
.then(res =>
let pubData = Object.entries(res.data());
// pubData will look like:
// [["1892872", …], ["1892875", …]]
)
edited Mar 24 at 16:31
answered Mar 24 at 16:20
Scott RudigerScott Rudiger
901414
901414
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325799%2fretrieve-entire-document-as-array-of-entries%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown