标签: javascript node.js undefined
您好我有以下代码但是temp总是返回undefined并且我已经尝试将变量作为参数传递但是没有找到解决方案。我怎么能得到temp的值来返回正确的值。我知道在javascript中顺序是不重要的,但我不知道如何解决这个问题。谢谢
function get_account (id){ temp = ""; Account.get(id, function (err, acc) { temp = acc.get("Account"); }); return temp }