我想使用 ScriptProperties,但它给了我一个页面错误。我的整个脚本不会运行。还有什么我需要做的吗?
if(ScriptProperties.getProperty('smnumCounter')== null)ScriptProperties.setProperty('smnumCounter','1');
var smnumValue = parseInt(ScriptProperties.getProperty('smnumCounter'));
smnumValue++;
ScriptProperties.setProperty('smnumCounter', smnumValue.toString());
var smnumValue2 = ScriptProperties.getProperty('smnumCounter');