我想用params将函数推送到数组而不执行它们.这是我到目前为止所尝试的:
var load_helpers = require('../helpers/agentHelper/loadFunctions.js'); var load_functions = []; load_functions.push(load_helpers.loadAgentListings(callback,agent_ids)); load_functions.push(load_helpers.loadAgentCount(callback,agent_data));
但是通过这种方式,函数会在推送时执行. This Question提供了类似的例子但没有参数.如何在此示例中包含参数?