Home  >  Article  >  Development Tools  >  How to use notepad’s json plug-in

How to use notepad’s json plug-in

(*-*)浩
(*-*)浩Original
2019-08-08 14:36:484369browse

How to use notepad’s json plug-in

There are two ways to use the json plug-in:

One is to format the JSON string, and the other is to open the JSON viewer. (Recommended learning: notepad use)

Format JSON string

Plug-in (P) -> JSON Viewer -> ; Format JSON

JSON before formatting:

{"startIndex":0,"pageSize":25,"totalCount":1,"resultSize":1,"sortType":"asc","sortBy":"id","queryTimeMS":1553232540936,"vXGroups":[{"id":1,"createDate":"2018-12-12T06:59:53Z","updateDate":"2018-12-12T06:59:53Z","owner":"Admin","updatedBy":"Admin","name":"public","description":"public group","groupType":0,"groupSource":0,"isVisible":1}]}

JSON after formatting:

{
    "startIndex": 0,
    "pageSize": 25,
    "totalCount": 1,
    "resultSize": 1,
    "sortType": "asc",
    "sortBy": "id",
    "queryTimeMS": 1553232540936,
    "vXGroups": [
        {
            "id": 1,
            "createDate": "2018-12-12T06:59:53Z",
            "updateDate": "2018-12-12T06:59:53Z",
            "owner": "Admin",
            "updatedBy": "Admin",
            "name": "public",
            "description": "public group",
            "groupType": 0,
            "groupSource": 0,
            "isVisible": 1
        }
    ]
}

Open JSON viewer

Plug-in (P) -> JSON Viewer -> Show JSON Viewer

Copy the JSON string to the newly created file,

Use Show JSON Viewer can be used to view its tree hierarchy:

How to use notepad’s json plug-inNote: The newly created file cannot contain text in non-JSON format, otherwise it will cause a JSON error.

The above is the detailed content of How to use notepad’s json plug-in. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn