提交给Google Spreadsheet浏览器兼容性

时间:2018-10-16 03:26:48

标签: javascript google-sheets-api

我创建了一个html表单,该表单可以提交给Google电子表格,并且可以在Chrome和Firefox上完美运行,但是在资源管理器上却以某种方式失败-我认为这与资源管理器不能很好地与“提取”一起使用有关。如何获得资源管理器合作?这是此博客的尝试:

https://medium.com/@dmccoy/how-to-submit-an-html-form-to-google-sheets-without-google-forms-b833952cc175

<script>
function sendData()
{
    var scriptURL ='https://script.google.com/macros/s/AKfycbwqWPFTTEbhUdVEwLsonLGnAvDTwgTYyfmdYl_tjJ.../exec';
    var form = document.forms['submit-to-google-sheet'];
    fetch(scriptURL, {method: 'POST', body: new FormData(form)});
}
</script>

0 个答案:

没有答案