我开了一个新问题:对话框的示例代码搞得一团糟
我正在尝试在https://developers.google.com/apps-script/reference/ui/dialog-box中运行示例
function doGet() {
var app = UiApp.createApplication();
// Create a dialog box.
var dialog = app.createDialogBox();
// Add a label to the dialog and set the dimensions and position.
dialog.setPopupPosition(100, 100).setSize(500, 500).show();
// Show the dialog. Note that it does not have to be "added" to the UiInstance.
dialog.show();
return app;
}
什么也没有发生。我错过了什么?
编辑:
我不知道部署为 webapp 的必要性,但现在在将上面的代码作为 webapp 运行后,我遇到了另一个问题:
这次我错过了什么?