Skip to content
本页目录

文件存储概览

AirCode 提供了一套极致简单的文件存储系统,一行代码即可上传文件并获得一个 CDN 加速的访问地址。例如:

js
const file = await aircode.files.upload('Hello World', 'hello.txt');
const file = await aircode.files.upload('Hello World', 'hello.txt');

同时,所有上传的文件信息可以在 Database 区域的 _files 表中查看和管理,还可以直接从浏览器中上传和管理文件。

快速上手

如果你从未使用过 AirCode 的文件存储(即 aircode.files),建议先跟随文件存储入门快速上手。

基本使用

API 定义

相关限制