From the schema getting field name and response have value for that field name
{{ Response.{{ fieldname }} }}
in angular
getting above error.
Try {{ Response[fieldName] }}
instead. The syntax for accessing a dynamic property is in Typescript is obj[prop]
where prop
is a string containing the property's key.
Here is a related question: Dynamically access object property using variable