任何人都可以在空手道API中如何分享以下回应
在这里,我想从响应中提取partNumber和productTitle,其中响应中的初始数字是动态性质,对于每个get方法,数字都会更改。
{“items”:{'41651625424':{itemCore:{partNumber:'1234567',productTitle:'Karate API Testing'}}}}
有多种方法,但在这种情况下,对我来说最好的选择是使用JsonPath:
* def response = { "items": { '41651625424': { itemCore: { partNumber: '1234567', productTitle: 'Karate API Testing' }}}}
* def itemCore = get[0] response..itemCore
* match itemCore == { partNumber: '1234567', productTitle: 'Karate API Testing' }