我正在使用谷歌應用程序腳本來創建上傳文件的表單。這是我的Code.gs文件:谷歌應用程序腳本表格不能正常工作
var SPREADSHEET_FILE_ID = '1oQn6OLMzys8tVk1FLriOAmpzFJNazLRP-SwM7--eA58';
var folderId = "0B9TN_-yt-h0WZ0dnWndGWkw3UkE";
function doGet() {
var template = HtmlService.createTemplateFromFile('index');
// Build and return HTML in IFRAME sandbox mode.
return template.evaluate()
.setTitle('Web App Window Title')
.setSandboxMode(HtmlService.SandboxMode.IFRAME);
};
,我使用幾乎相同的URL https://script.google.com/d/125dG42eB9lM4SPq64p0dpR2CBH4ohfHiqu9TvFNM8s4Ra7pt-7kHXoTM/edit?usp=sharing所有其他代碼。 我收到以下錯誤。
3402363213-mae_html_user_bin_i18n_mae_html_user.js:42 Uncaught ReferenceError: "doc" is not defined.
任何人都可以請幫助爲什麼這個錯誤即將到來,如何防止這種情況。否,因爲沒有提交。我點擊提交按鈕後被吊死。
你解決了嗎? – noogui