我构建了一个基本上有两个 gui 屏幕的 google gui web 应用程序。第一个 gui 屏幕有一些文本输入字段,当用户单击“提交”时,它应该拉出第二个 gui 屏幕,显示一些结果。
我的第二个 gui 开始与第一个相同:
function displayForm2(hwEntered){
var app = UiApp.createApplication().setHeight('800').setWidth('600');;
var panel = app.createVerticalPanel();
...code and stuff...
app.add(panel);
return app;
}
我如何使它作为一个网络应用程序工作?