我是Node js的新手,我陷入了一个非常基本的问题。 我有几个函数,其中一个函数的输出用作下一个参数的查询参数
function getCdTypeByValue (table_name,kpi_type){
//some query runs here
return id
}
insertInsight = function(req,res){
var id = getCdTypeByValue (table_name,kpi_type);
//use id in a query for insert
}
在我的代码中,insertInsight中的insert语句需要从getCdTypeByValue返回的ID。 因此,我需要将其作为同步调用,nodejs做到这一点的最佳实践是什么。