我尝试将此 html 代码加载到 Google 脚本中:
<iframe src="http://www.w3schools.com"></iframe>
保存名为“page”的文件,然后在 Google 脚本中使用它:
function doGet() {
return HtmlService.createHtmlOutputFromFile('page');
}
它查看 iframe,但没有内容。我在这里错过了什么吗?
我尝试将此 html 代码加载到 Google 脚本中:
<iframe src="http://www.w3schools.com"></iframe>
保存名为“page”的文件,然后在 Google 脚本中使用它:
function doGet() {
return HtmlService.createHtmlOutputFromFile('page');
}
它查看 iframe,但没有内容。我在这里错过了什么吗?