标签: google-apps-script google-docs
您好我的Scritp GAS有问题。 我清除了所有Google Doc,但是当我在Google doc上写新数据时。我的数据在第二页。
还有其他方法可以清除Google文档吗?
function eraseContent(docId){
var doc = DocumentApp.openById(docId); doc.setText(" ");
}
问候