node js函数变量调用

时间:2016-04-21 14:42:57

标签: javascript node.js tabletop.js

var vGlobals = {
    dataString: "nuu"
};



Tabletop.init( { key: 'sfas234asefasdy569xbhxcvnvc',
                       callback: showInfo,
                       simpleSheet: true } )

    function showInfo(data, tabletop) {
           vGlobals.dataString = utf8.encode(base64.encode(data));
    }

    showInfo();

如何访问数据变量(showInfo中的第一个参数),所以我可以在代码的最后一行进行函数调用? showInfo函数是tabletop.js的npm模块中的函数。

0 个答案:

没有答案