首页 > 代码库 > angular第五天
angular第五天
1、$filter
2、自定义过滤器
<!-- index.html --><!DOCTYPE html><html ng-app="myApp"><head> <meta charset="UTF-8"> <title>Document</title> <script src="http://www.mamicode.com/angular.js"></script></head><body> <div ng-controller="firstController"> <p>{{ name }}</p> <p>{{ num }}</p> </div></body><script type="text/javascript"> var app = angular.module("myApp", []); app.controller(‘firstController‘, [‘$scope‘,‘$filter‘, function($scope, $filter){ $scope.num = 344342342357.32342565; $scope.name = $filter("firstUpper")("hello"); }]); //自定义过滤器的写法是返回一个函数 app.filter("firstUpper",function(){ //这里的参数就是使用过滤器的时候传入的参数 return function(str,num,nu2){ // console.log(str); // console.log(num); // console.log(nu2); return str.charAt(0).toUpperCase()+str.substring(1); } })</script></html>
angular第五天
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。