将腾讯文档
转换为JSON API

连接腾讯文档到 CRM, API, Website, WordPress, 任何网络应用.

内测申请
[
  {
    "id": "1",
    "name": "Tom",
    "age": "15",
    "comment": ""
  },
  {
    "id": "2",
    "name": "Alex",
    "age": "24",
    "comment": ""
  }
]

腾讯文档表格JSON API

使用以下方法操作腾讯文档表格/智能表 GET, POST, PUT DELETE

文档筹备中...

代码样例

<!-- More details here: https://docs.sheetdb.io/handlebars -->

<table>
    <thead>
        <tr>
            <td>ID</td>
            <td>Name</td>
            <td>Age</td>
            <td>Comment</td>
        </tr>
    </thead>
    <tbody data-sheetdb-url="https://chongyacode.com/api/v1/58f61be4dda40"
        data-sheetdb-sort-by="age"
        data-sheetdb-sort-order="desc">
        <tr>
            <td>{{id}}</td>
            <td>{{name}}</td>
            <td>{{age}}</td>
            <td>{{comment}}</td>
        </tr>
    </tbody>
</table>
<script src="https://chongyacode.com/handlebars.js"></script>