内容简介:JavaScript Library for Google Sheets/Microsoft Excel Online through sheet2api.The sheet2api JS library can be installed through npm.To get started you need to provide your sheet2api Spreadsheet API URL. You can find it on the
sheet2api JavaScript Client
JavaScript Library for Google Sheets/Microsoft Excel Online through sheet2api. https://sheet2api.com/
Installation
The sheet2api JS library can be installed through npm.
npm install sheet2api-js --save
Example Usage
To get started you need to provide your sheet2api Spreadsheet API URL. You can find it on the sheet2api Dashboard .
Try it out with the codepen https://codepen.io/sheet2api/pen/MWKZrqW
Importing the library
<!-- Server import --> <script src="//sheet2api.com/v1/api.js"></script>
// Or, Require import var Sheet2API = require('sheet2api-js'); // Or, ES6 import import Sheet2API from 'sheet2api-js';
Read rows
<script src="//sheet2api.com/v1/api.js"></script> <script> var url = 'https://sheet2api.com/v1/FgI6zV8qT121/characters/'; var options = {}; Sheet2API.read(url, options).then(function(result){ console.log(result); }, function(error){ console.log(error); }); </script>
Read rows matching a search query
<script src="//sheet2api.com/v1/api.js"></script> <script> var url = 'https://sheet2api.com/v1/FgI6zV8qT121/characters/'; var options = {query: { 'Name': 'Bugs Bunny' }}; Sheet2API.read(url, options).then(function(result){ console.log(result); }, function(error){ console.log(error); }); </script>
Create new rows
<script src="//sheet2api.com/v1/api.js"></script> <script> var url = 'https://sheet2api.com/v1/FgI6zV8qT121/characters/'; var newRowData = { "Favourite Thing": "Carrots", "Name": "Bugs Bunny" }; var options = {}; Sheet2API.write(url, options, newRowData).then(function(result){ console.log(result); }, function(error){ console.log(error); }); </script>
Something missing you'd like to see? Please create an issue.
很遗憾的说,推酷将在这个月底关闭。人生海海,几度秋凉,感谢那些有你的时光。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。