我是google-apps-script的新手。我遇到这个错误“TypeError:找不到对象Generic中的函数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,但没有任何效果。
感谢您的帮助!
忠
答案 0 :(得分: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;
}
答案 1 :(得分:2)
更改
var text = app.getElementById('theText').getValue();
通过
var text = e.parameter.theText;
e是您的表格值
使用setName修复的名称来选择要在变量
答案 2 :(得分:1)
如果您引用documentation for textArea,则textArea没有getValue()
这样的方法。正如Cartman所回答的,您可以通过callbackElement获取值,该callbackElement使用textArea的名称作为参数(除非您想要setValue()
使用其他内容,否则不需要ID)