How to use a variable as an Object Key [MongoDB]
-
I'm trying to use variable name given to me by my function, but its actually setting the object key equal to 'name' function addlist(name, item, id){ // Add to user's list var $push = {}; $push[name] = item; console.log(id); db.collection('newcon').update({_id: id}, {"$push": {name: item}}); ret(id); } Other solutions similar to this don't work, since I need to also have it build onto the array every time this function is called, not replace whatever is in it each time.
-
Answer:
JavaScript has no nice notation for creating an object where the keys are variables: var $push_query = {}; $push_query[name] = item; ... {"$push": $push_query} ...
Ajax jQuery at Stack Overflow Visit the source
Related Q & A:
- how to use javascript variable value in jsp?Best solution by Stack Overflow
- How to retrieve a JSON as an object in Android?Best solution by Stack Overflow
- How to pass a variable from php to a modal?Best solution by Stack Overflow
- How to pass a variable from AlertDialog to an Activity?Best solution by Stack Overflow
- Can I use a variable to name other variables?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.