Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试形成如下请求:
http://host/api/FHIR/DSTU2/Schedule?Schedule.actor:Practitioner=1234&Schedule.actor:Practitioner.location=5678&slottype=urn:oid:1.2.3|PrimaryCare&start=2016-08-08
使用 HAPI FHIR Java API,我如何解析以下参数:
Schedule.actor:从业者=1234
Schedule.actor:Practitioner.location=5678
这绝对是支持的。
假设您正在创建服务器,您可能需要在资源提供程序方法中添加一个参数,例如:
@IncludeParam(allow={"Schedule:actor","Schedule:practitioner"}) Set<Include> theIncludes
添加"*"到字符串列表以将任何内容列入白名单
"*"