Công cụ miễn phí để xác thực và trích xuất phần klhớp của dữ liệu JSON dựa trên biểu thức đầu vào. Cú pháp JSON Path phải được cho biết ở định dạng $.< tên tham số > và đối tượng có được khớp với tên tham số đã cho sẽ được hiển thị trong hộp kết quả đầu ra. Tham khảo ví dụ JSONPath để biết cách sử dụng.
Thanks for your feedback
Bạn muốn tìm nguyên nhân gốc rễ của vấn đề trong ứng dụng của bạn? Sử dụng Site24x7 APM Insight.
Kiểm tra thời gian hoạt động từ 130 địa điểm trên toàn cầu
Theo Dõi Gửi Mail.
Theo dõi máy chủ SMTP của bạn.
Theo Dõi Máy Chủ POP/IMAP.
Cảnh báo dựa trên AI
Theo dõi máy chủ Microsoft Exchange.
Xử lý sự cố liên quan đến máy chủ mail.
Hiểu những sự phụ thuộc bên ngoài
Theo dõi các thành phần và số liệu tùy chỉnh
Following are few example jsonpath expressions and results for the above sample json data
JSONPath Expression | Description | Result |
---|---|---|
$ | Select the root element | |
$.address.city | Select the value of 'city' element which is the direct children of 'address' element | |
$..type | Select the value of all the 'type' elements in the input json | |
$.address.length() | Select the length of the 'address' element | |
$..* | Select all the elements and its value | |
$.phoneNumbers[1] | Select the 2nd value from 'phoneNumbers' array | |
$.phoneNumbers[?(@.number)] | Select the 'phoneNumbers' element if it have 'number' element within it |