我正在尝试动态添加选项,就像在此处给出的示例中一样:https
://github.com/google/google-apps-script-samples/tree/master/simple_tasks
我使用几乎完全相同的代码,但我每次都会出错:
未捕获的类型错误:无法设置只有 getter 的 [object Object] 的属性长度
我的代码.gs:
function doGet(e) {
return HtmlService.createTemplateFromFile('index').evaluate().setSandboxMode(HtmlService.SandboxMode.NATIVE).setTitle('RepairAdminSysteem');
}
function include(filename) {
return HtmlService.createHtmlOutputFromFile(filename)
.getContent();
}
function data() {
var ss = SpreadsheetApp.openById(SS_ID).getActiveSheet();
var data = ss.getDataRange().getValues();
Logger.log(Utilities.jsonStringify(data));
}
function init() {
var status = ['VERSTUURD','NIET VERSTUURD','AKKOORD','NIET AKKOORD','HERRINNERING','TWEEDE HERRINNERING','GEEN REACTIE','NIET VAN TOEPASSING','PAUZE'].sort();
return status;
}
我的(相关)html:
<select id='status' disabled>
<option>Loading...</option>
</select>
和javascript:
<script>
$(function() {
$('#status').bind('change', loadPO);
start();
});
function start() {
google.script.run.withSuccessHandler(success)
.init();
}
function success(status) {
var select = $('#status');
select.empty();
status.forEach(function(elem) {
var option = $('<option>').attr('value',elem).text(elem);
select.append(option);
});
select.prop('disabled', false);
loadPO();
}
function loadPO() {
alert('test');
}
</script>
如果我更改select.empty();
为select.html('');
一切都按预期工作,但我不明白为什么它在简单任务示例中而不是在我的代码中工作。
我想知道的是为什么这个几乎相同的代码在上面链接中的简单任务应用程序中而不是在我的应用程序中工作?