2014-10-02 39 views
2

我正在學習GAS。快速入門:管理Google表單響應中的應用腳本使用depecrated類&方法:ScriptProperties.getProperty(key)ie.ScriptProperties.getProperty('calId')。我已經向Google報告這是一個問題。有沒有更好的方法來編寫這個例子並獲得類似的結果?GAS:替代使用ScriptProperties.getProperty來檢索事件所需的ID

// Store the ID for the Calendar, which is needed to retrieve events by ID. 
    ScriptProperties.setProperty('calId', cal.getId()); 

回答

2

另一個答案几乎是正確的......,它只是使用文檔中的快捷方式,而沒有定義快捷方式本身。

的語法如下

PropertiesService.getScriptProperties().setProperty(key, value) 

而且如文檔中所述的所有類似的方法。 (getProperty,setProperties等)

使用方法相同,您可以在腳本中使用find/replace來更新每次出現的事件。