Wix表单提交到Google表格

时间:2018-04-17 06:34:12

标签: jquery

我试图创建一个代码,只要我的Wix网站上的用户提交表单,表单数据也会提交到我的Google表格。

我按照本文https://medium.com/@dmccoy/how-to-submit-an-html-form-to-google-sheets-without-google-forms-b833952cc175在Google表格上创建了​​我的网络应用

我在输入网站上的代码时遇到问题,无法为我的网络应用/脚本构建一个AJAX请求。

var $form = $('form#test-form'),
    url = 'https://script.google.com/macros/s/abcdefghijklmnopqrstuvwxyz1234567890/exec'

$('#submit-form').on('click', function(e) {
  e.preventDefault();
  var jqxhr = $.ajax({
    url: url,
    method: "GET",
    dataType: "json",
    data: $form.serializeObject()
  }).success(
    // do something
  );
})

上面的代码显示了表单ID,但在我的wix网站上,我没有表单ID,只输入字段ID和数据集ID。

我不是专业人士,所以无法正确解释,但有人可以帮助我,如果他们了解我的情况。

0 个答案:

没有答案