json文件上启用代码完成

json文件上启用代码完成

本文介绍了如何配置VS Code以在.json文件上启用代码完成(jsonschema支持)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Visual Stuido代码演示中,第28分钟:57-29:20和30:20-31:10,显示了一些很酷的JSON代码完成.

In the Visual Stuido Code demo minute 28:57-29:20 and 30:20-31:10, some cool JSON code completion is shown.

我在哪里以及如何将JSON文件的架构添加到项目中?

Where and how do I add a schema for my JSON files to a project?

VS Code如何知道给定的.json文件使用哪种模式?

How does VS Code know which schema to use for a given .json file?

推荐答案

JSON模式与文件的关联是在"json.schemas"属性下的设置(文件",首选项",用户设置"或工作区设置")中完成的.

The association of JSON schemas to files is done in the settings (File, Preferences, User Settings or Workspace Settings), under the property 'json.schemas'.

这是一个示例,如何将Bower的JSON模式与Bower模式相关联.

This is an example how the JSON schema for bower is associated to the bower schema.

"json.schemas": [
    {
        "fileMatch": [
            "/bower.json",
            "/.bower.json"
        ],
        "url": "http://json.schemastore.org/bower"
    },
    ...

您还可以使用位于工作空间中的架构,或者直接在设置本身中定义架构.查看 https://code.visualstudio.com/docs/languages/json 以获取示例.

You can also use schemas located in your workspace or define a schema right in the settings itself. Check https://code.visualstudio.com/docs/languages/json for examples.

这篇关于如何配置VS Code以在.json文件上启用代码完成(jsonschema支持)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 07:26