以下代码,在Google表格中,来自Google Scripts的书籍,正在返回非法形成的XML语法。 (第7行,文件"代码")"错误。怎么了?我是Apps脚本的新手。
function helloWorldUiApp() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var app = UiApp.createApplication().setTitle(<Your Title>);
app.add(app.createLabel('Hello World'));
//TODO add your code here
ss.show(app);
}