我是 FHIR 上的 Smart 新手,并使用 fhirclient.js 创建一个用于培训目的的演示应用程序。我需要在指定的日期(过去 3 个月)内获取患者的一些特定重要信息,例如温度、体重等。
smart.patient.api.search({
type: "Observation",
query: {
$sort: [
["date",
"asc"]
],
code: {
$or: ['http://loinc.org|8462-4',
'http://loinc.org|8480-6',
'http://loinc.org|55284-4',
'http://loinc.org|8310-5',
'http://loinc.org|3141-9',
'http://loinc.org|718-7']
}
}
}).then(results => {
让我知道如何在此搜索 API 中包含日期过滤器?