This blog represents a list of recommendations for capturing user inputs from a form in an Angular app.
<input #fullname (keyup)="setName(fullname.value)"/>
The following represents usage of $event object (not recommended):
<input (keyup)="setName($event)"/>
<input #fullname (keyup)="setName(fullname.value)"/>
<input #fullname (keyup)="setName(fullname.value); fullname='' "/>
In case you are developing web apps using Spring and Angular, check out my book, Building web apps with Spring 5 and Angular. Grab your ebook today and get started.
The combination of Retrieval-Augmented Generation (RAG) and powerful language models enables the development of sophisticated…
When building a Retrieval-Augmented Generation (RAG) application powered by Large Language Models (LLMs), which combine…
Last updated: 25th Jan, 2025 Have you ever wondered how to seamlessly integrate the vast…
Artificial Intelligence (AI) agents have started becoming an integral part of our lives. Imagine asking…
In the ever-evolving landscape of agentic AI workflows and applications, understanding and leveraging design patterns…
In this blog, I aim to provide a comprehensive list of valuable resources for learning…