NATIVEサンドボックスモードで次のコードが投稿されない理由を誰か説明してもらえますか? EMULATED モードの場合は機能します。
Code.gs
function doGet(e) {
var template = HtmlService.createTemplateFromFile('Index.html');
template.action = ScriptApp.getService().getUrl();
return template.evaluate().setSandboxMode(HtmlService.SandboxMode.NATIVE);
}
function doPost(e) {
Logger.log("TESTING!");
}
索引.html
<form action="<?= action ?>" method="post">
<label>Phone: <input type="text" name="phone"></label><br>
<label><input type="submit"></label>
</form>