簡體   English   中英

在 Core 3.1 應用程序中綁定給定患者屬性時出錯(FHIR .net model 作為請求模型)

[英]Error in binding Given Property of Patient(FHIR .net model as request model) in Core 3.1 App

我有 .net 核心 3.1 web 應用程序,

使用 HL7.Fhir.R4(1.7.0)。

我使用患者 model 作為請求 model,

        [HttpPost]
        public Hl7.Fhir.Model.Patient Create([FromBody] Hl7.Fhir.Model.Patient patient)
        {
            //Use the client to create patient
            return patient;
        }

這是一個請求 model,

{
    "ResourceType": "Patient",
    "Active": true,
    "Name": [
        {
            "Use": 1,
            "Family": "Kirk",
            "Given": [
                "Darshana"
            ]
        },
        {
            "Use": 0,
            "Given": [
                "Jim"
            ]
        }
    ],
    "Gender": 1,
    "BirthDate": "1994-08-25"
}

出現以下錯誤:

System.InvalidCastException: Unable to cast object of type 'SelectListIterator`2[Hl7.Fhir.Model.FhirString,System.String]' to type 'System.Collections.Generic.IList`1[System.String]'.
   at System.Text.Json.JsonSerializer.ApplyValueToEnumerable[TProperty](TProperty& value, ReadStack& state)
   at System.Text.Json.JsonPropertyInfoNotNullable`4.OnReadEnumerable(ReadStack& state, Utf8JsonReader& reader)
   at System.Text.Json.JsonPropertyInfo.ReadEnumerable(JsonTokenType tokenType, ReadStack& state, Utf8JsonReader& reader)
   at System.Text.Json.JsonPropertyInfo.Read(JsonTokenType tokenType, ReadStack& state, Utf8JsonReader& reader)
   at System.Text.Json.JsonSerializer.ReadCore(JsonSerializerOptions options, Utf8JsonReader& reader, ReadStack& readStack)
   at System.Text.Json.JsonSerializer.ReadCore(JsonReaderState& readerState, Boolean isFinalBlock, ReadOnlySpan`1 buffer, JsonSerializerOptions options, ReadStack& readStack)
   at System.Text.Json.JsonSerializer.ReadAsync[TValue](Stream utf8Json, Type returnType, JsonSerializerOptions options, CancellationToken cancellationToken)
   at Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding)
   at Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding)
   at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinder.BindModelAsync(ModelBindingContext bindingContext)
   at Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.BindModelAsync(ActionContext actionContext, IModelBinder modelBinder, IValueProvider valueProvider, ParameterDescriptor parameter, ModelMetadata metadata, Object value)
   at Microsoft.AspNetCore.Mvc.Controllers.ControllerBinderDelegateProvider.<>c__DisplayClass0_0.<<CreateBinderDelegate>g__Bind|0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)
   at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context)

我讀了代碼,它正在使用 Linq.Select 將值設置為其他 object 失敗。

如何綁定Given屬性? 請幫忙。

也許這可以幫助某人或從事此工作的人可以驗證或建議他們是否擁有某些東西,

我創建了ResourceJsonInputFormatterResourceJsonOutputFormatter ,在啟動時注冊格式化程序,最終使用 FhirSerializer 序列化 API 請求和響應。 現在它工作正常。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM