我有一个Google Apps脚本功能SearchFiles()
,它会根据用户提供的关键字返回下载网址。它是这样的:
function SearchFiles(inputValueFromUser) {
var searchFor ='title contains "' + inputValueFromUser + '"';
var searchForAbsString = inputValueFromUser + '.pdf' ;
//The Rest of the Code goes here
if(file.getName() == searchForAbsString){
downloadURL = "https://drive.google.com/uc?export=download&id=" + fileId;
arryOfUrls.push(downloadURL);
};
};
Logger.log('arryOfUrls: ' + arryOfUrls);
return arryOfUrls;//.toString(); //Send array of download urls back to client side JavaScript
};
该函数以纯文本格式返回arryOfUrls
。
1)如何以超链接形式发送?
2)是否可以自动打开URL(立即开始下载),只需单击相应的按钮(在Index.html
上)即可获得链接?
答案 0 :(得分:0)
不能它不能直接作为超链接发送(至少我不知道)。但是您可以将HTML信息嵌入到字符串中(如<a href=downloadUrl>...</a>"
)。这可以在客户端解释为链接。