我在分层模型结构中具有导航属性,该属性会在序列化过程中在angular 7中引起循环依赖性错误。
export class MyClass {
// this property should be ignored for JSON serialization
parent: MyClass;
childList: MyClass[];
}
我想知道是否有任何内置解决方案(例如,杰克逊存在这样的装饰器:@JsonBackReference)在序列化时(例如在http.put期间)忽略父属性。
非常感谢您的任何建议!