Để tạo bộ lọc gọi encodeURIComponent, sau đây là HTML -
<div ng-app = "app"> <a href = "/foo/{{ 'bar&baz' | encodeURIComponent }}">Demo</a> </div>
Sau đây là Angular của chúng tôi -
var app = angular.module('app', []); app.filter('encodeURIComponent', function() { return window.encodeURIComponent; });