Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để gọi encodeURIComponent từ mẫu AngularJS trong HTML?


Để 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;
});