Home Web Front-end JS Tutorial AngularJs Learning Part 8 Filter Creation

AngularJs Learning Part 8 Filter Creation

Feb 07, 2017 pm 02:07 PM

demo

This is the entire sample demo

1. filter.js file

1

2

3

4

5

6

7

angular.module("exampleApp", [])

.constant("productsUrl", "http://localhost:/products")

.controller("defaultCtrl", function ($scope, $http, productsUrl) {

$http.get(productsUrl).success(function (data) {

$scope.products = data;//直接转成了数组

});

});

Copy after login

Here I introduce The service is used as a constant. The advantage of writing it this way is that it is easy for me to modify.

For how to use the $http service, please refer to my AngularJs (3) Deployed using

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

<!DOCTYPE html>

<html xmlns="http://www.w.org//xhtml" ng-app="exampleApp">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-"/>

<title></title>

<script src="angular.js"></script>

<link href="bootstrap-theme.css" rel="stylesheet" />

<link href="bootstrap.css" rel="stylesheet" />

<script src="filter.js"></script>

</head>

<body ng-controller="defaultCtrl" >

<div class="panel">

<div class="panel-heading">

<h class="btn btn-primary">Products</h>

</div>

<div class="panel-body">

<table class="table table-striped table-condensed">

<thead>

<tr>

<td>Name</td><td>Category</td><td>Price</td><td>expiry</td>

</tr>

</thead>

<tbody>

<tr ng-repeat="item in products">

<td>{{item.name | uppercase}}</td>

<td>{{item.category}}</td>

<td>{{item.price | currency}}</td>

<td>{{item.expiry| number }}</td>

<td>{{item | json}}</td>

</tr>

</tbody>

</table>

</div>

</div>

</body>

</html>

Copy after login

Running results:

AngularJs学习第八篇 过滤器filter创建

Use filter

Filters are divided into two categories:

1. Filtering of single data

2. Operate the collection.

1. It is relatively simple to operate the data. As shown in the demo, you can format it in {{item | currency}}, etc.

Currency: "f" can filter the price into pounds.

Filter for single data. For the data format you want to filter, use : in the corresponding format character after the filter.

Number: Indicates the reserved decimal places of the data,

2: Set filtering, filter out a certain number from the set.

In the basic demo, I added this:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

<div class="panel-heading">

<h class="btn btn-primary">Products</h>

</div>

<div class="panel-body">

Limit:<select ng-model="limitValue" ng-options="p for p in limitRange" ></select>

</div>

  filter.js中加入了:

$http.get(productsUrl).success(function (data) {

$scope.products = data;//直接转成了数组

$scope.limitValue = "";//要是字符串

<span style="background-color: rgb(, , );"> $scope.limitRange = [];

for (var i = ; i <= $scope.products.length; i++) {

$scope.limitRange.push(i.toString());

<span style="background-color: rgb(, , );"> }</span></span>

});

 <tr ng-repeat="item in products|limitTo:limitValue">

<td>{{item.name | uppercase}}</td>

<td>{{item.category}}</td>

<td>{{item.price | currency}}</td>

<td>{{item.expiry| number }}</td>

<td>{{item | json}}</td>

</tr>   

<span style="line-height: .; font-family: verdana, Arial, Helvetica, sans-serif; font-size: px; background-color: rgb(, , );"> </span>

Copy after login

The function you are writing must be written in success because json is obtained asynchronously data.

Result:

AngularJs学习第八篇 过滤器filter创建

limit: You can adjust the number displayed on the page.

Create filter

AngularJs has two types of filters. First, we can create a filter that formats individual data, for example: the first letter of the output string is capitalized.

Let’s first talk about how to define a filter: The filter is created through module.filter. The general format of creation is:

angular.module("exampleApp") //Indicates getting a module. Filters are created under modules.

.filter("labelCase", function () { //Receive two parameters, the first parameter represents the name of the filter, and the second is a factory function

return function (value, reverse) { //Return a worker function, corresponding to the corresponding filtering process. The first parameter indicates the object that needs to be formatted, and the second parameter indicates the configuration and the format.

1

2

3

4

5

6

7

8

9

10

if(angular.isString(value))

{

var intermediate = reverse ? value.toUpperCase() : value.toLowerCase();

return (reverse ? intermediate[].toLowerCase() : intermediate[].toUpperCase() + intermediate.substr());

}else

{

return value;

}

}

});

Copy after login

##I wrote this into a js file. CustomFilter.js Don’t forget to add it. Now let me change the data:

1

2

3

<link href="bootstrap.css" rel="stylesheet" />

<script src="filter.js"></script>

<script src="customFilter.js"></script>

Copy after login

As mentioned before, if you need to add configuration information, the writing format is filter: option

Of course, the default parameters are also If you don’t write it, it will default to Null value or undefined.


Result:


It’s that simple to customize a filter function for each data processing.

#2. Customize a collection processing function, just like limitTo

1

<td>{{item.name | labelCase:true}}</td>

Copy after login


## html changed part:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

angular.module("exampleApp")

.filter("labelCase", function () {

return function (value, reverse) {

if (angular.isString(value)) {

var intermediate = reverse ? value.toUpperCase() : value.toLowerCase();

return (reverse ? intermediate[].toLowerCase() : intermediate[].toUpperCase() + intermediate.substr());

} else {

return value;

}

}

})

.filter("skip", function () {

return function(data,count)

{

if (angular.isArray(data) && angular.isNumber(count)) {

if(data.length<count || count<)

{

return data;

}else

{

return data.slice(count);

}

} else {

return data;

}

}

});

Copy after login
.

Result: There are six pieces of data in total, and the skip filter was used to pass 2 pieces

. When customizing the filter, I found that a filter has already been defined. I don’t want to define it again. What should I do? We can also create it using the previously created filter.

$filter('skip') calls the skip filter, because it returns a function, so we can continue to pass parameters AngularJs学习第八篇 过滤器filter创建

1

<tr ng-repeat="item in products | skip: ">

Copy after login

Result:

##The filter is completed like this. Isn’t it very simple?

Please pay attention to PHP Chinese for more articles on AngularJs learning about filter creation. net!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Replace String Characters in JavaScript Replace String Characters in JavaScript Mar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Custom Google Search API Setup Tutorial Custom Google Search API Setup Tutorial Mar 04, 2025 am 01:06 AM

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

8 Stunning jQuery Page Layout Plugins 8 Stunning jQuery Page Layout Plugins Mar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web Applications Build Your Own AJAX Web Applications Mar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

What is 'this' in JavaScript? What is 'this' in JavaScript? Mar 04, 2025 am 01:15 AM

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

10 Mobile Cheat Sheets for Mobile Development 10 Mobile Cheat Sheets for Mobile Development Mar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Improve Your jQuery Knowledge with the Source Viewer Improve Your jQuery Knowledge with the Source Viewer Mar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

How do I create and publish my own JavaScript libraries? How do I create and publish my own JavaScript libraries? Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

See all articles