考虑:
function submit(e) {
var db = ScriptDb.getMyDb();
// Clear the values from the text boxes so that new values can be entered
var app = UiApp.getActiveApplication();
app.getElementById('description').setValue('');
app.getElementById('model').setValue('');
app.getElementById('productCode').setValue('');
// Make the status line visible and tell the user the possible actions
var db = ScriptDb.getMyDb();
var results = db.query({BarCode:'productCode'});
app.getElementById('result').setVisible(true).setText(Utilities.jsonStringify(results));
return app;
}
它只输出以下而不是结果:
ScriptDb Object
该脚本用于带有 ScriptDB 的 Google 脚本,我想从查询中输出一个字符串答案。