angular自带的一些api_Angular API
js框架 API
API stands for Application
Programming Interface.
AngularJS Global API
The AngularJS Global API is a set of global JavaScript functions for
performing common tasks
like:
Comparing objects
Iterating objects
Converting data
The Global API functions are accessed using the angular object.
Below is a list of some common API functions:
API
Description
angular.lowercase()
Converts a string to lowercase
angular.uppercase()
Converts a string to uppercase
angular.isString()
Returns true if the reference is a string
angular.isNumber()
Returns true if the reference is a number
angular.lowercase()
Example
{{ x1 }}
{{ x2 }}
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.x1 = "JOHN";
$scope.x2 = angular.lowercase($scope.x1);
});
來試試吧 ?
angular.uppercase()
Example
{{ x1 }}
{{ x2 }}
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.x1 = "John";
$scope.x2 = angular.uppercase($scope.x1);
});
來試試吧 ?
angular.isString()
Example
{{ x1 }}
{{ x2 }}
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.x1 = "JOHN";
$scope.x2 = angular.isString($scope.x1);
});
來試試吧 ?
angular.isNumber()
Example
{{ x1 }}
{{ x2 }}
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.x1 = "JOHN";
$scope.x2 = angular.isNumber($scope.x1);
});
來試試吧 ?
新人創作打卡挑戰賽發博客就能抽獎!定制產品紅包拿不停!總結
以上是生活随笔為你收集整理的angular自带的一些api_Angular API的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python include_Pytho
- 下一篇: python文件处理seek()方法的参