以前,我有两个对象的fromGroupName不同,但在fromGroup中,我有相同的fromControlName
就像照片里一样
this is the respond API that I have to compare
I want to compare the formcomtrolName of oldAuditLog(formGroupName) to the fromControlName of newAuditLog(formGroupName)
以前,我有两个对象的fromGroupName不同,但在fromGroup中,我有相同的fromControlName
就像照片里一样
this is the respond API that I have to compare
I want to compare the formcomtrolName of oldAuditLog(formGroupName) to the fromControlName of newAuditLog(formGroupName)
1条答案
按热度按时间20jt8wwn1#
因此,您有两个表单,每个表单的名称不同,您可以从每个表单中提取数据,并使用对象表示法来比较值。
1.从表单提取数据(将"formControlGroup"替换为您在代码中定义的表单组):
const oldAuditLog = this.formControlGroup.value
1.现在你有了表单中的数据,你可以引用你想要比较的属性并比较它们!
console.log(oldAuditLog.ruleName)
应该输出"RuleName",就像你的附件一样。如果有帮助就告诉我!