自定义 mimetypes(MIME 类型)#

什么是 mimetype?#

当发生互联网请求和响应时,会传递一个 Content-Type 标头。mimetype(也称为 MIME 类型)根据类型识别应用程序和浏览器应如何处理或使用正在返回的内容。MIME 类型由 MIME (即应用程序、图像、音频等)和 MIME 子类型组成。例如,MIME 类型是 image/png,其中 MIME image子类型png

由于类型可能包含特定于供应商的项目,因此可以使用 自定义特定于供应商的 MIME 类型 vnd。特定于供应商的 MIME 类型将包含 vnd,例如 application/vnd.jupyter.cells

在 Jupyter 和 IPython 项目中使用的自定义 mimetypes#

  • application/vnd.jupyter

  • application/vnd.jupyter.cells

  • application/vnd.jupyter.dragindex 由 nbdime 使用

  • application/x-ipynb+json 用于笔记本

  • text/html

    • 元数据

      • isolated: boolean – HTML 应在 <iframe> 中呈现。

用于显示的自定义 MIME 类型列表#