เครื่องมือฟรีสำหรับตรวจรับรองและแยกส่วนที่ตรงกันของข้อมูล JSON เทียบกับนิพจน์อินพุท ไวยากรณ์เส้นทาง JSON จะต้องกำหนดมาในรูปแบบ $.< ชื่อตัวแปร > และวัตถุผลลัพธ์ที่ตรงกับชื่อตัวแปรที่กำหนดให้จะสดงออกมาในช่องผลลัพธ์เอาท์พุท ดูที่ตัวอย่าง JSONPath สำหรับการใช้งาน
Thanks for your feedback
ต้องการค้นหาสาเหตุแท้จริงของปัญหาด้านประสิทธิภาพในแอปพลิเคชันของคุณใช่ไหม ใช้ Site24x7 APM Insight
ตรวจสอบเวลาพร้อมทำงานจาก 130 สถานที่ตั้งทั่วโลก
การตรวจสอบการส่งอีเมล
ตรวจสอบเซิร์ฟเวอร์ SMTP ของคุณ
การตรวจสอบเซิร์ฟเวอร์ POP/IMAP
การแจ้งเตือนที่ขับเคลื่อนโดย AI
การตรวจสอบเซิร์ฟเวอร์ Microsoft Exchange
แก้ไขปัญหาที่เกี่ยวข้องกับเซิร์ฟเวอร์อีเมล
ทำความเข้าใจความขึ้นต่อกันภายนอก
ตรวจสอบส่วนประกอบและเมตริกแบบกำหนดเอง
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 |