使用json外掛
json外掛主要提供兩個功能:
一個是格式化JSON字串,另一個是開啟JSON檢視器。 (推薦學習:notepad使用)
格式化JSON字串
#外掛程式(P) -> JSON Viewer -> ; Format 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 Viewer -> Show JSON Viewer
將JSON字串複製到新建的檔案中,
使用Show JSON Viewer可用查看其樹形層次結構:
注意:新建的檔案中不能有非JSON格式的文本,否則會導致JSON報錯。
以上是notepad++的json插件怎麼使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!