用法

JSON、YAML、CSV

Nuxt 内容也可以查询 JSON、YAML 和 CSV 内容。

JSON

Nuxt 内容可以查询 JSON 格式的内容。

{
  "title": "Hello Content v2!",
  "description": "The writing experience for Nuxt 3",
  "category": "announcement"
}
如果文档根目录是一个对象 {},输出包含其根目录的所有文档属性。如果文档根目录是一个数组 [],输出包含一个 body 属性中的所有文档属性。

YAML / YML

Nuxt 内容可以查询 YAML / YML 格式的内容。

title: Hello Content v2!
description: The writing experience for Nuxt 3
category: announcement
如果文档根目录基于键值对,则输出包含其根目录中的所有文档属性。如果文档根目录是一个列表 -,则输出包含一个 body 属性中的所有文档属性。

CSV

Nuxt 内容可以查询 CSV 格式的内容。

title,description,category
Hello Content v2!,The writing experience for Nuxt 3,announcement
输出的 body 是一个数组,包含每一行作为对象。