2017-04-27 71 views
2

我創建使用的.Net核心C#和2角映射的.Net核心實體有一對角2個接口

檢索所有的職位工作的罰款簡單的博客,但現在我已經加入了許多關係評論到每個崗位的陣列,這已引起以下錯誤:

enter image description here

不打字稿需要有關意見的更多信息?

角度成分:

enter image description here

API方法:enter image description here

回答

0

我已經設法解決這個問題。

由於Entity Framework內部的循環引用,JSON無法解析。

我manged加入這個選項裏面startup.cs解決它:

services.AddMvc() 
      .AddJsonOptions(options => 
      { 
       options.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore; 
      }); 
相關問題