我想看看在我的Json一定值。搜索字符串
搜索類型「patientSize」並找到「coveredText」的價值。
其實,控制檯拋出發現:[]
因爲我必須執行一些搜索,我要尋找一個快速,高性能的可能性。感謝您的提示。
例JSON
{
"annoDs": [
{
"begin": 512,
"end": 518,
"type": "patientSize",
"coveredText": "183 cm",
"additionalParameters": {
"unit": "Zentimeter",
"value": "183"
}
}
]
}
JS
var data = JSON.parse(retrievedAnnotation);
setTimeout(function() {
function getAge(code) {
return data.annoDs.filter(
function(data){
return data.code == code;
}
);
}
var found = getAge('patientSize');
console.log("found:", found);
}, 50);
'代碼!== type' – Andreas