从方法中的嵌套函数返回查询结果

时间:2018-01-06 13:29:34

标签: javascript mysql node.js return-value nested-function

我试图将使用node的mysql查询结果存储到变量中并将该变量记录到控制台。由于方法中的嵌套函数,我没有得到任何可用的返回结果。我已经尝试了几项工作来完成这项工作,但我正在寻找最简单的解决方案。这是我的代码:

Function StringCountOccurences(strTxt As String, strFnd As String, Optional lngCmp As VbCompareMethod) As Long
    If Len(strFnd) <> 0 Then
        StringCountOccurences = (Len(strTxt) - Len(Replace(strTxt, strFnd, "", , , lngCmp))) / Len(strFnd)
    End If
End Function

0 个答案:

没有答案