gpt4 book ai didi

javascript - 如何使用 React JS 将数据放入我的 Google 电子表格

转载 作者:行者123 更新时间:2023-11-29 15:58:07 25 4
gpt4 key购买 nike

<分区>

我用这个作为引用 https://github.com/ruucm/react-google-sheets但是每当我运行这个时,我总是收到 gapi 404 错误我有一种预感,github 链接不存在,因此我的应用程序无法运行

也许我错了。

是否有一个非常好的引用,我可以将数据从 React js 发送到谷歌电子表格?

我在电子表格上进行了多次尝试,但它在电子表格中将数据提供给应用程序的位置恰恰相反我需要的是对电子表格使用react

import React, { Component } from 'react';
import ReactGoogleSheets from 'react-google-sheets';

class GoogleSheets extends Component {

constructor(props) {
super(props)
this.state = {
sheetLoaded: false,
}
}

render() {
return (

<ReactGoogleSheets
clientId={'243...apps.googleusercontent.com'}
apiKey={'AIza...'}
spreadsheetId={'2PAC...'}
afterLoading={() => this.setState({ sheetLoaded: true })}
>
{this.state.sheetLoaded ?
<div>
{/* Access Data */}
{console.log('Your sheet data : ', this.props.getSheetsData( 'gSheets' ))}
{/* Update Data */}
<button onClick={() => {
this.props.updateCell(
'gSheets', // sheetName
'b', // column
2, // row
'TESTING', // value
null, // successCallback
(error) => {
console.log('error', error)
} // errorCallback
);
}}>update cell!</button>
</div>
:
'loading...'
}
</ReactGoogleSheets>


)

}

}
export default GoogleSheets;

输出应该是一个按钮,里面有数据,用于在电子表格中发送

但我得到的只是这个错误

gapi.js:257 GET https://apis.google.com//scs/apps-static//js/k=oz.gapi.ko.u0WhFdqJrXQ.O/m=auth2,client/rt=j/sv=1/d=1/ed=1/am=QQE/rs=AGLTcCO-v0Extr2gWwJAKxa0xtQS573uyA/cb=gapi.loaded_0 net::ERR_ABORTED 404

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