How would I programmatically call an object method? Like MyObject.XVariable(//some function)
I have an object, that takes input from an API call to fill it up.
let MyDog =
Name: 'Dog',
let arrayFunctions;
fetchDogsFunctions(dogAPIUrl).then(res =>
//results is an array that has a list of functions the dog has, like //getStats(), or walkDog()
arrayFunctions = res;
)
Now I want to map through the array results and call the function on my dog like...
arrayFunctions.map(item =>
await MyDog.item(//Params)
)
How can I do this??
Where MyDog is set up from a file, and then depending on the array functions, for each function it programmatically fills in the call to the new function like MyDog.item where item is a variable in an array called "Walk()"
javascript arrays reactjs
add a comment |
I have an object, that takes input from an API call to fill it up.
let MyDog =
Name: 'Dog',
let arrayFunctions;
fetchDogsFunctions(dogAPIUrl).then(res =>
//results is an array that has a list of functions the dog has, like //getStats(), or walkDog()
arrayFunctions = res;
)
Now I want to map through the array results and call the function on my dog like...
arrayFunctions.map(item =>
await MyDog.item(//Params)
)
How can I do this??
Where MyDog is set up from a file, and then depending on the array functions, for each function it programmatically fills in the call to the new function like MyDog.item where item is a variable in an array called "Walk()"
javascript arrays reactjs
it is not clear what you want, why you are waiting toMyDog
withawait
if it'sobject
?
– Artyom Amiryan
Nov 13 '18 at 7:52
add a comment |
I have an object, that takes input from an API call to fill it up.
let MyDog =
Name: 'Dog',
let arrayFunctions;
fetchDogsFunctions(dogAPIUrl).then(res =>
//results is an array that has a list of functions the dog has, like //getStats(), or walkDog()
arrayFunctions = res;
)
Now I want to map through the array results and call the function on my dog like...
arrayFunctions.map(item =>
await MyDog.item(//Params)
)
How can I do this??
Where MyDog is set up from a file, and then depending on the array functions, for each function it programmatically fills in the call to the new function like MyDog.item where item is a variable in an array called "Walk()"
javascript arrays reactjs
I have an object, that takes input from an API call to fill it up.
let MyDog =
Name: 'Dog',
let arrayFunctions;
fetchDogsFunctions(dogAPIUrl).then(res =>
//results is an array that has a list of functions the dog has, like //getStats(), or walkDog()
arrayFunctions = res;
)
Now I want to map through the array results and call the function on my dog like...
arrayFunctions.map(item =>
await MyDog.item(//Params)
)
How can I do this??
Where MyDog is set up from a file, and then depending on the array functions, for each function it programmatically fills in the call to the new function like MyDog.item where item is a variable in an array called "Walk()"
javascript arrays reactjs
javascript arrays reactjs
edited Nov 13 '18 at 14:03
Zach
asked Nov 13 '18 at 7:41
ZachZach
204
204
it is not clear what you want, why you are waiting toMyDog
withawait
if it'sobject
?
– Artyom Amiryan
Nov 13 '18 at 7:52
add a comment |
it is not clear what you want, why you are waiting toMyDog
withawait
if it'sobject
?
– Artyom Amiryan
Nov 13 '18 at 7:52
it is not clear what you want, why you are waiting to
MyDog
with await
if it's object
?– Artyom Amiryan
Nov 13 '18 at 7:52
it is not clear what you want, why you are waiting to
MyDog
with await
if it's object
?– Artyom Amiryan
Nov 13 '18 at 7:52
add a comment |
3 Answers
3
active
oldest
votes
I assumed how your data might have structured. Pls take a look below and you might get the idea of how to call functions dynamically using "await"
const MyDog =
funA(a) return Promise.resolve('Function A called with parameter ' + a)
, funB(b) return Promise.resolve('Function B called with parameter ' + b)
const arrayFunctions = ['funA', 'funB']
Promise.all(arrayFunctions.map(async (item, i) =>
await MyDog[item](++i))
)
.then(console.log)
add a comment |
I can't see any property name "item" in your MyDog Object
add a comment |
The answer is to do :
MyDog[item]()
within the loop.
I was asking the correct syntax to perform this operation
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%2f53276084%2fhow-would-i-programmatically-call-an-object-method-like-myobject-xvariable-so%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I assumed how your data might have structured. Pls take a look below and you might get the idea of how to call functions dynamically using "await"
const MyDog =
funA(a) return Promise.resolve('Function A called with parameter ' + a)
, funB(b) return Promise.resolve('Function B called with parameter ' + b)
const arrayFunctions = ['funA', 'funB']
Promise.all(arrayFunctions.map(async (item, i) =>
await MyDog[item](++i))
)
.then(console.log)
add a comment |
I assumed how your data might have structured. Pls take a look below and you might get the idea of how to call functions dynamically using "await"
const MyDog =
funA(a) return Promise.resolve('Function A called with parameter ' + a)
, funB(b) return Promise.resolve('Function B called with parameter ' + b)
const arrayFunctions = ['funA', 'funB']
Promise.all(arrayFunctions.map(async (item, i) =>
await MyDog[item](++i))
)
.then(console.log)
add a comment |
I assumed how your data might have structured. Pls take a look below and you might get the idea of how to call functions dynamically using "await"
const MyDog =
funA(a) return Promise.resolve('Function A called with parameter ' + a)
, funB(b) return Promise.resolve('Function B called with parameter ' + b)
const arrayFunctions = ['funA', 'funB']
Promise.all(arrayFunctions.map(async (item, i) =>
await MyDog[item](++i))
)
.then(console.log)
I assumed how your data might have structured. Pls take a look below and you might get the idea of how to call functions dynamically using "await"
const MyDog =
funA(a) return Promise.resolve('Function A called with parameter ' + a)
, funB(b) return Promise.resolve('Function B called with parameter ' + b)
const arrayFunctions = ['funA', 'funB']
Promise.all(arrayFunctions.map(async (item, i) =>
await MyDog[item](++i))
)
.then(console.log)
const MyDog =
funA(a) return Promise.resolve('Function A called with parameter ' + a)
, funB(b) return Promise.resolve('Function B called with parameter ' + b)
const arrayFunctions = ['funA', 'funB']
Promise.all(arrayFunctions.map(async (item, i) =>
await MyDog[item](++i))
)
.then(console.log)
const MyDog =
funA(a) return Promise.resolve('Function A called with parameter ' + a)
, funB(b) return Promise.resolve('Function B called with parameter ' + b)
const arrayFunctions = ['funA', 'funB']
Promise.all(arrayFunctions.map(async (item, i) =>
await MyDog[item](++i))
)
.then(console.log)
answered Nov 13 '18 at 7:56
Nitish NarangNitish Narang
2,9601815
2,9601815
add a comment |
add a comment |
I can't see any property name "item" in your MyDog Object
add a comment |
I can't see any property name "item" in your MyDog Object
add a comment |
I can't see any property name "item" in your MyDog Object
I can't see any property name "item" in your MyDog Object
answered Nov 13 '18 at 7:56
HarisHaris
679
679
add a comment |
add a comment |
The answer is to do :
MyDog[item]()
within the loop.
I was asking the correct syntax to perform this operation
add a comment |
The answer is to do :
MyDog[item]()
within the loop.
I was asking the correct syntax to perform this operation
add a comment |
The answer is to do :
MyDog[item]()
within the loop.
I was asking the correct syntax to perform this operation
The answer is to do :
MyDog[item]()
within the loop.
I was asking the correct syntax to perform this operation
answered Nov 14 '18 at 5:51
ZachZach
204
204
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%2f53276084%2fhow-would-i-programmatically-call-an-object-method-like-myobject-xvariable-so%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
it is not clear what you want, why you are waiting to
MyDog
withawait
if it'sobject
?– Artyom Amiryan
Nov 13 '18 at 7:52