跳到导航

API Explorer中的凭据自动填充

让开发者免去查找和复制API密钥的麻烦。当用户通过认证后,他们的API凭据将自动填入API Playground。这样,他们可以更快地进行第一次API调用。

API Explorer Splash Image

Webflow的API Explorer中查看实时效果。

Read the docs

卡片组件系统

增强了文档卡片组件,改善视觉组织效果。信息现在可以以更结构化和吸引人的方式呈现。

interface CardProps {
title: string;
description: string;
icon?: IconName;
variant?: 'default' | 'bordered' | 'filled';
actions?: CardAction[];
}
interface CardAction {
label: string;
href?: string;
onClick?: () => void;
}
Read the docs