Skip to content

AirTable

AirTable ,官网 https://airtable.com/ ,可以供静态网站如 GitHub Pages 构建时使用。一次登录,长期有效,非个人设备记得退出登录。

免费用户,单库行数限制为 1000 ,附件容量限制为 1 GB 。每月调用 API 次数限制为 1000 。

付费方面,购买一年 240 美元。单库行数限制为 5 万,附件容量限制为 20 GB 。每月调用 API 次数限制为 10 万 。

网址形如 https://airtable.com/appABC123/tblabc123/viwaBc123?blocks=hide ,嵌入库编号 ABC123 、表编号 abc123 、 视图编号 aBc123 。

API 方面,查询限制 100 条,不支持页码,指针查询。新增、修改、删除限制 10 条。每个库限制请求 5 个/秒。

不支持自部署。

库,右上角 Tools -> Extensions -> Add an extension -> Scripting ,付费升级可用。

let table = base.getTable("Tasks");
let query = await table.selectRecordsAsync({fields: table.fields});

console.log(query.records);

导入方面,支持 Excel 、 CSV 、 Google Sheets 、 Paste table data 等格式。视图导出,支持 CSV 格式。

字段类型:

  • Link to another record
  • Single line text
  • Long text
  • Attachment
  • Checkbox
  • Multiple select
  • Single select
  • User
  • Date
  • Phone number
  • Email
  • URL
  • Number
  • Currency
  • Percent
  • Duration
  • Rating
  • Formula
  • Rollup
  • Count
  • Lookup
  • Created time
  • Last modified time
  • Ctreaed by
  • Last modified by
  • Autonumber
  • Barcode
  • Button

AirTable 优点:支持表单视图,界面好看。

AirTable 缺点:行数限制紧,API 设计不合理。

联系 math@baima.site