Skip to main content

How to Save Form Data in Mongodb Database using Node.js

  In this tutorial we will learn how to save data from the Form in Mongodb database using a Node.js app. We will create a simple form in html in front end and use node.js as backend server to post or save the data into mangoose database. In the previous blog post, we just learned how to submit the form data using javascript, but in this blog we will learn a little advanced concept of saving the form data into a database. To learn about how to save data from a form in Mongodb database using node.js, you need to have some basic understanding of node.js, mongoose, and html. 1. Creating a Node.js app Open the command terminal on your computer and type below commands in it. mkdir sample-app cd sample-app npm init -y   2. Install Dependencies In order to successfully run our application, we need to install some dependencies as mentioned below: Mongoose: Mongoose is a Object Data Modelling library for node.js. It helps in object mapping, creating collections, saving and retrievi

Understanding Intents in Dialogflow

Dialogflow is a highly robust and dynamic natural language understanding platform that allows you to quickly build highly scalable conversational chatbots by leveraging the power of Artificial Intelligence (AI).

You can easily create highly customizable chatbots for variety of channels like web applications, mobile applications, Facebook page, social media apps and much more. It provides seamless integration with variety of channels like Facebook, Viber, Telegram, Slack and much more.

But in order to start working on building a chatbot yourself, lets connect the dots to get a clear picture of entire chatbot development process in Dialogflow. To create a chatbot, let us understand some of the nuances of the Dialogflow.

What are Intents?

Intents help Dialogflow ascertain the real intent or motive of the user messages. You can provide a set of certain training phrases that can help Dialogflow get trained to recognize similar such phrases and trigger a specific intent whenever such phrases are encountered.

Lets look at this example, if you want to create a chatbot that can display current score of Indian or any cricket team and for that you need to first know the name of the user who is interacting, then first you can create an intent name GetName (you can give any name as you want) and then provide different training phrases or user expressions that will help Dialogflow to trigger this intent.

Creating Intents

To create an intent inside a Dialogflow bot, follow the steps below:

  1. Select the desired chatbot.
  2. Select the Entities option.
  3. Enter the desired intent name.
  4. Add many training phrases to trigger this intent.
  5. Click the Save button.



Training Phrases

Lets dive deep into the actual training phrases that will be used to train Dialogflow to invoke this intent when user inputs exact or similar phrases. From the above example where we have to fetch user name from the user expression, we can provide different expressions that will broaden the scope of training and extract the exact name of the user. You can provide expressions like as shown below:

  1. Nikhil is my name
  2. My name is Nikhil
  3. Nikhil
  4. I am Nikhil
  5. This is Nikhil
  6. Nikhil and how are  you? 

      and so on.

There is no limit to the number of user expressions you can enter as training phrases. You can train Dialogflow to extract certain entities from these phrases, which we will cover in our subsequent blogs on Entities.

You can also test out your intent by enter the relevant training phrase in the try it now text box in the panel on right hand side.



Any response that you set gets displayed in the Default Response section.

In the subsequent parts of the blogs, we will dwelve deep to further know concepts like Entities, Fulfillment, Webhooks, Contexts and much more.

Till that time, happy coding!


Comments

  1. Very nice blog...will explore further

    ReplyDelete
    Replies
    1. Thanks foryour valuable inputs will post more blogs

      Delete
  2. Very well explanation of the subject with minute details and examples.

    ReplyDelete
  3. This article is good for the person who are into such work. So your target audience is of similar interests, this is good article. If your article is to target layman, then you have to bring yourself to zero first, questions like what is dialogue flow and chatbots, what is intents, expression. Trust me if you bring it to tune of layman, you will write your success stories.

    Best of luck
    Warm Regards
    Saurabh Thanekar

    ReplyDelete
    Replies
    1. Thanks Saurabh! for your valuable inputs and sparing time to read this blog. Will surely consider your suggestions.

      Delete
  4. Very well written in an easy to understand language!

    ReplyDelete
  5. Very informative article by covering all the technicality of dialoge flow

    ReplyDelete
  6. Wynn Las Vegas vs Caesars Palace Hotel | JTM Hub
    Both hotels offer business-friendly accommodation with free Wi-Fi in all guest rooms. Guests can enjoy 서귀포 출장마사지 the 삼척 출장안마 views from 동두천 출장샵 the pool and 포천 출장마사지 pool at Wynn. 대전광역 출장샵

    ReplyDelete

Post a Comment

Popular posts from this blog

API Documentation Overview

 In this blog, we will explore an example of API documentation for one example function findNeedles(). findNeedles() Overview The purpose of the findNeedles() API takes two string parameters i.e. needles array and haystack and finds the total number of occurrences of each element in the needles array that are present in the haystack string. This function searches for only five words or less from the needles array and logs an error if more words are available in the needles array. The comparison is done by first splitting the haystack string using literals like backspace, tab space, single quote, and double quote etc into single elements and then looping over the needles array to find occurrences of these elements. Parameters This function takes following parameters: Name Type Description haystack String A string of any length needles String Array An array of words     Sample Code

Using Entities in Dialogflow to Extract Vital Information

Having learned about Intents in our previous blog , in this blog we will shed light on another interesting topic of Entities in Dialogflow . Entities provide an efficient way to capture and extract crucial information like name, country, location and any custom information from user inputs. Entities can be mainly categorized into three types: 1.  System Entities : These are build-in entities provided by Dialogflow through which you can identify and extract most common type of data like name, country, date, email address etc. 2. Custom Entities : These are user-defined entities that are useful to extract custom data from the user inputs. For example, you can define a Fruit entity type that can identify and map different fruit types like Mango, Apple etc.        3.  Session Entities : As the name suggests, these entities remain active only for the session for which they have been created. They provide additional capability through which we can update custom entity types with new