如何在HTML的AngularJS模板中调用encodeURIComponent?
本文将学习如何在HTML的AngularJS模板中调用encodeURIComponent。
每次在URI中出现特定字符时,`encodeURIComponent()` 函数都会将其替换为一个、两个、三个或四个转义序列,这些序列表示字符的UTF-8编码(只有由两个“代理”字符组成的字符才会是四个转义序列)。
语法
以下是`encodeURIComponent`的语法:
encodeURIComponent(uriComponent)
Uricomponent
任何对象,包括字符串、数字、布尔值、null或undefined。`uriComponent`在编码之前会转换为字符串。
让我们来看下面的例子,以便更好地理解。
示例1
在下面的例子中,我们使用了`encodeURIComponent`。
<!DOCTYPE html> <html> <body> <p id="tutorial"></p> <script> let uri = "https://tutorialspoint.com/index.htm"; let encoded = encodeURIComponent(uri); document.getElementById("tutorial").innerHTML = encoded; </script> </body> </html>
运行上述脚本后,输出窗口会弹出,显示我们在上述脚本中使用的URL的编码URL。
示例2
在下面的例子中,我们使用函数`encodeURIComponent(string)`来编码URL参数。
<!DOCTYPE html> <html> <head> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js"></script> <script> var myApp = angular.module("mytutorials", []); myApp.controller("mytutorials1", function($scope) { $scope.url1 = 'https://tutorialspoint.com/index.htm'; $scope.url2 = ''; $scope.encodeUrlStr = function() { $scope.url2 = encodeURIComponent($scope.url1); } }); </script> </head> <body> <div ng-app="mytutorials"> <div ng-controller="mytutorials1"> <button ng-click ="encodeUrlStr()" >Encode URL</button> <br> URL1 = {{url1}}<br> URL2 = {{url2}} </div> </div> </body> </html>
脚本执行后,将生成包含url1和url2(为空)的输出,以及在网页上显示的encodeURL按钮。
如果用户点击encodeURL按钮,则url1中给出的URL将被编码并在url2中显示。
广告