gpt4 book ai didi

javascript - Google Sheet API,PUT : this. http.put(...).map 不是函数

转载 作者:行者123 更新时间:2023-12-01 01:39:07 25 4
gpt4 key购买 nike

我正在尝试对 Google Sheets API 进行简单的 PUT 调用。我遵循了一些 http.put 语法,但不断收到错误:this.http.put(...).map 不是一个函数。

我的代码块:

return this.http
.put(url, JSON.stringify(data), {headers: headers})
.map(
(res: any) => {
res.json();
console.log ("transaction data updated to google seets:"+res.json());
}
);

最佳答案

导入了吗?

import { map } from 'rxjs/operators';

编辑

您需要导入上述内容,我还建议您使用 HttpClient 而不是 HttpModule,这会删除 res.json(),您的代码将如下所示,

将选项设置为,

return this.http.put(url, JSON.stringify(formData), this.options)
.pipe(map(response => response.json()));

关于javascript - Google Sheet API,PUT : this. http.put(...).map 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52578568/

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