3

我对 google-apps-script 很陌生。我遇到了这个错误“TypeError:在对象通用中找不到函数 getValue”,我不知道为什么。

这是代码:

function doGet(e) {


  var app = UiApp.createApplication();
  app.setTitle("My first application");

  var vPanel = app.createVerticalPanel();

  var hPanel3 = app.createHorizontalPanel();
  hPanel3.add(app.createLabel("Text"));
  var textArea = app.createTextArea().setId('theText').setName('theText');
  //textArea.setName("textArea");

  hPanel3.add(textArea);
  vPanel.add(hPanel3);

  var hPanel4 = app.createHorizontalPanel();
  var button = app.createButton("Save");
  var handler = app.createServerHandler('onClick');
  handler.addCallbackElement(textArea);
  button.addClickHandler(handler);
  hPanel4.add(button);
  vPanel.add(hPanel4);

  var label = app.createLabel().setId('label').setText('tata');
  //label.setName("label");

  var hPanel5 = app.createHorizontalPanel();
  hPanel5.add(label);
  vPanel.add(hPanel5);

  app.add(vPanel);

  return app;

}

function onClick(e) {
  var app = UiApp.getActiveApplication();
  // ERROR occurs here when the button is clicked
  var text = app.getElementById('theText').getValue();

  Logger.log(text);

  app.getElementById('label').setValue(e.parameter.textArea + ' toto');
  //label.setText(textArea.getValue());

  return app;
}

我已经更改了 textArea 的名称和 ID,但没有任何效果。

谢谢你的帮助!

4

3 回答 3

4

TextArea类没有getValue方法。它的值作为参数传递给处理程序。这是一个演示它如何工作的示例。

function doGet(e) {
   var app = UiApp.createApplication();
   var panel = app.createFlexTable();
   panel.setWidth('100%');
   var btn = app.createButton().setId('btn').setText('Click Me');
   var textArea = app.createTextArea().setName('textArea').setValue('Text');
   var handler = app.createServerHandler('onBtnClick');
   handler.addCallbackElement(panel);
   btn.addClickHandler(handler);   
   panel.setWidget(0, 0, btn);
   panel.setWidget(1, 0, textArea);
   app.add(panel);
   return app;
}

function onBtnClick(e) {
  var app = UiApp.getActiveApplication();
  var btn = app.getElementById('btn');
  var textAreaValue = e.parameter.textArea;
  btn.setText(textAreaValue);
  return app;
}
于 2012-07-05T11:57:39.767 回答
2

改变

var text = app.getElementById('theText').getValue();

经过

var text = e.parameter.theText;

e 是您的表单值
,您使用 setName 固定的名称来选择要在变量中获取的 e 参数

于 2012-07-05T11:46:29.440 回答
1

如果您参考textArea 的文档,则没有getValue()textArea 这样的方法。正如卡特曼回答的那样,您可以通过使用textArea名称作为参数的 callbackElement 获取值(ID 不是必需的,除非您想setValue()使用其他东西)

于 2012-07-05T11:57:33.813 回答