我可以将应用脚本返回值(字符串)存储为JavaScript变量吗?

时间:2018-03-12 15:24:46

标签: javascript html google-apps-script

我有一个应用程序脚本函数,它从内置的PropertiesService返回一个存储值。当用户单击按钮并希望将返回的值存储为JS变量时,我调用此函数。我知道函数被调用并且按预期工作,但我一直得到" undefined.mp3"背部。有什么想法吗?

Code.gs

function getMP3Name () {
    var userProperties = PropertiesService.getUserProperties();
    return userProperties.getProperty('mp3name'); 
}

的index.html

function onSuccess(mp3) {
    return(mp3)
}

var fileFullName = google.script.run.withSuccessHandler(onSuccess).getMP3Name(); + '.' + fileExtension;

0 个答案:

没有答案