我正在撰写Google Docs Add-on,并希望每当用户添加/删除新字时,都会在扩展程序中跟踪字数。
我最初的做法是:
Code.gs :中的
function getWordCount() {
var st = DocumentApp.getActiveDocument().getBody().getText().replace(/\n/g, ' ') + ' ';
st = st.split(/\s* \s*/).length;
return st - 1;
}
Sidebar.html :中的
var docCount = 0;
function updateWordCount(data) {
if(data) {
docCount = data;
}
google.script.run.withSuccessHandler(updateWordCount).getWordCount();
}
但它似乎非常90 ...有没有办法将数据从谷歌应用程序脚本推送到客户端?我了解Google Realtime API,但它不适用于Google文档的应用脚本。
此致