Home > Development Tools > notepad > body text

How to use the json plug-in of notepad++

(*-*)浩
Release: 2019-08-21 16:06:59
Original
3978 people have browsed it

Use the json plug-in

The json plug-in mainly provides two functions:

How to use the json plug-in of notepad++

One is the format ize the JSON string and the other is to open a 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}]}
Copy after login

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
        }
    ]
}
Copy after login

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 the json plug-in of notepad++Note: 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 the json plug-in of notepad++. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!