我想使用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');
答案 0 :(得分:1)
您在代码中的某处出现语法错误。当我尝试将Ui元素添加到应用程序时,我会发生这样的确切错误,例如当app.add(label);
不再是Ui元素时label
。 (我忘记更改/删除的代码)。我看到你的ScriptProperties代码没有任何问题。
答案 1 :(得分:0)
您的代码对我来说非常合适。