0

我想使用 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');
4

2 回答 2

1

您在代码中的某处有语法错误。当我尝试将 Ui 元素添加到应用程序时,就会发生这个确切的错误,例如app.add(label);何时label不再是 Ui 元素。(我忘记更改/删除的代码)。我看到的 ScriptProperties 代码没有任何问题。

于 2012-05-16T12:12:14.867 回答
0

你的代码对我来说非常好。

于 2012-05-16T11:30:58.273 回答