[Angularjs] Angularjs series Note (iv) filter

Source: Internet
Author: User

A filter can use a pipe character (| ) is added to the expression and directive, is this the template function?

  <Body>    <DivNg-app= "Home">      <DivNg-controller= "Index">the formatted string is lowercase {{myName () |lowercase}}.        The formatted string is uppercase {{myName () |uppercase}}.        Format number as currency format {{price|currency}}. Arrange arrays based on an expression<Png-repeat= "X in Prices | By: ' Price '">{{X.price}}</P>. Remove child elements from the array<inputtype= "text"Ng-model= "Test">         <Png-repeat= "x in prices |filter:test | By: ' Price '">{{X.price}}</P>. </Div>    </Div>  </Body>  <Scripttype= "Text/javascript">  //instantiate Application object, parameter: module name, empty array  varapp=Angular.module ("Home",[]); //Call the Controller () method of the Application objectApp.controller ("Index",function($scope) {$scope. MyName=function(){      return "Tao"+"Shihan"; } $scope. price=5; $scope. Prices=[{Price:1},{price:5},{price:3}];  }); </Script>

[Angularjs] Angularjs series Note (iv) filter

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.