gpt4 book ai didi

javascript - 发送 HTTP 请求以调用 Google Sheet API 来编辑单元格

转载 作者:行者123 更新时间:2023-11-28 06:40:42 24 4
gpt4 key购买 nike

我想制作一个网页,从 URL 查询中获取数据并将其写入 Google 电子表格中。我尝试的是制作 Atom.xml 并将其链接到我的 HTML 代码中并使用

     XMLHttpRequest().setRequestHeader("Content-type","application/atom+xml")

在我的 JavaScript 代码中。

我的问题很简单,我应该如何使用 <entry>...</entry> 发送此请求Google 要求我将其包含在此 PUT 请求的“正文”中吗?

我阅读了Sheet API文档并在Google上搜索了很长时间但没有结果。我不知道如何为 PUT 请求提供“正文”。

我该怎么做?

最佳答案

我不熟悉 XMLHttpRequest。我承认这不是您正在寻找的答案;但是,我认为这对任何可能偶然发现此问题的人都有用,并且可能对您有用。

人们通常在他们的网站上使用 jquery 或 angularjs 等框架。

https://jquery.com/在 jquery 中,您可以使用正文执行 put 请求,如下所示:

var xmldata = '<some xml... >';

$.ajax({
method: "PUT",
url: "some_url",
contentType: 'application/atom+xml'
data: xmldata
})
.done(function( msg ) {
alert( "Data Saved: " + msg );
})
.fail(function(e){
console.log("There was a problem!");
console.log(e);
})
.always(function(d) {
console.log("This will always happen!");
});

http://api.jquery.com/jquery.ajax/

考虑使用这样的工具,因为它使您的代码更简单且更易于阅读。最相关的是:它可以节省您的时间和精力。

编辑以详细说明 Promise 的回调和参数:

jqXHR.done(function( data, textStatus, jqXHR ) {}); An alternative construct to the success callback option, the .done() method replaces the deprecated jqXHR.success() method. Refer to deferred.done() for implementation details.

jqXHR.fail(function( jqXHR, textStatus, errorThrown ) {}); An alternative construct to the error callback option, the .fail() method replaces the deprecated .error() method. Refer to deferred.fail() for implementation details.

jqXHR.always(function( data|jqXHR, textStatus, jqXHR|errorThrown ) { }); An alternative construct to the complete callback option, the .always() method replaces the deprecated .complete() method.

来自:http://api.jquery.com/jquery.ajax/

关于javascript - 发送 HTTP 请求以调用 Google Sheet API 来编辑单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33851886/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com