json プラグインを使用する
json プラグインは主に 2 つの機能を提供します。
1 つは JSON 文字列をフォーマットする方法で、もう 1 つは JSON ビューアを開く方法です。 (推奨学習: notepad の使用)
JSON 文字列のフォーマット
プラグイン (P) -> JSON ビューア -> ; JSON
フォーマット前の JSON のフォーマット:
{"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:
{ "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 ビューアを開く
プラグイン (P) -> JSON ビューア -> Show JSON Viewer
JSON 文字列を新しく作成したファイルにコピーします。
Show JSON Viewer を使用します。ツリー階層を表示するために使用されます:
注: 新しく作成されたファイルには、非 JSON 形式のテキストを含めることはできません。そうでない場合は、JSON エラーが発生します。
以上がnotepad++のjsonプラグインの使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。