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模块中的函数。