Це відео не доступне.
Перепрошуємо.

Pipes - Angular (Tutorial #15)

Поділитися
Вставка
  • Опубліковано 27 тра 2018
  • In this video we will learn about Pipes in Angular applications
    Use this link to share this video: • Pipes - Angular (Tutor...
    Angular JS 1.x has filters which are used for many common uses like formatting dates, string display in uppercase or lowercase etc. These filters are knows as "Pipes" in Angular
    Pipes allows us to change the data before display to the user.
    Normally a pipe takes the data and transforms this input to the desired output. There are two types of pipes in Angular
    1) built-in pipes
    2) Custom pipes
    Built in pipes are already created in angular ,we just need to call that if we want to use it. If Built-in pipes are not sufficient for project needs we are free to create custom pipes
    There are 10 built in pipes in angular
    1) Uppercase
    2)Lowercase
    3)Titlecase
    4)date
    5)Currency
    6)Number
    7)date
    8)slice
    9)json
    10)async
    Syntax :
    {{ expression | pipename:arguments }}
    Whenever you want to use pipe just use pipe name followed by pipe(|) character. Pipes are methods behind the scene , so methods can take arguments in same manner pipe can also take argument which you will pass after colonn(:)
    Chaining of Pipe: Sometime we want to use more than one pipe on same expression so this is called chaining of pipe. So here suppose we want to apply date and uppercase together on dob express
    {{dob | date | uppercase}}
    In this case output of date pipe will act like a input for uppercase pipe
    If you liked my channel , subscribe to it and like my videos. For any queries ask you question in comment section
    you can also connect with me @
    Facebook: / angularjs4beginners
    LinkedIn: / nisha-singla-82407aa0
    Website :

КОМЕНТАРІ • 17

  • @hafismuhammad7028
    @hafismuhammad7028 Рік тому +2

    Even you are taking a class about pipes in this particular tutorial, but i am learning more concepts because of your teaching style. Thank you nisha singla , i have great respect for you.

  • @mohammadmaroof7770
    @mohammadmaroof7770 6 років тому +1

    Very nice tutorial, explained in very simple way.

  • @mannumahto8160
    @mannumahto8160 3 роки тому +1

    Your explained every point very nicely...love your content on angular 4

  • @shibanarayanmohapatro6263
    @shibanarayanmohapatro6263 4 роки тому +1

    nice video about pipes

  • @mdrayan98
    @mdrayan98 Рік тому

    Nicely Explained!!

  • @udaykumarb2621
    @udaykumarb2621 4 роки тому +1

    thnq so much for the video

  • @kotireddy419
    @kotireddy419 4 роки тому +2

    When to used pure pipe and impure pipe ? Can you please explain regarding this

  • @pkumar124
    @pkumar124 2 роки тому +2

    Please explain on the pure and impure pipe as well

  • @nirajbadaik6796
    @nirajbadaik6796 4 роки тому +1

    Thanks for the tutorial. please make some tutorials on form validation

  • @prudhvikumar5919
    @prudhvikumar5919 2 роки тому +1

    maam what is full name of tag??

    • @NishaSingla
      @NishaSingla  2 роки тому

      Its basically preformatted text .. but used to call by name pre tag only

  • @dikshantyadav1110
    @dikshantyadav1110 6 років тому

    is there any way to search a particular record from the table depending upon the user input??(like you have filter: filter in angular js something like that??)

  • @SenthilMuthiah
    @SenthilMuthiah 4 роки тому

    Good Work. Where can I see the code shown in this tutorial