卷曲& mongodb query:如何查询多个参数

时间:2017-03-17 15:22:36

标签: bash mongodb curl syntax

我使用以下代码登录我的dicom服务器(Orthanc),然后查询与参数匹配的系列ID,并将这些ID写入JSON文件:

curl -u user:password http://localhost:8042/tools/find -d '{"Level":"Series","Query":{"PatientName":"*DGF*", "SeriesDescription":"*Diastolic_TRACE*"}}' > ~/Desktop/updatedSeriesID.json

我想保存所有系列ID,其中“SeriesDescription”为“ Diastolic_TRACE ”或“ Systolic_TRACE ”。

如何查询“ Diastolic_TRACE ”或“ Systolic_TRACE ”?

如果我重复上面的代码但更改“SeriesDescription”并使用'>>'附加到JSON文件',则会创建2个ID数组,但我只想要1个包含所有系列ID的数组(对于简易索引)。

提前致谢!

0 个答案:

没有答案