En son web geliştirme öğreticiler
 

AngularJS API


API ben nterface Bir pplication P rogramming kısaltmasıdır.


Angularjs Küresel API

Angularjs Küresel API gibi ortak görevleri gerçekleştirmek için genel JavaScript fonksiyonları bir dizi:

  • nesneleri karşılaştırılması
  • yineleme nesneleri
  • dönüştürme veri

Küresel API işlevleri açısal nesne kullanılarak erişilir.

Aşağıda bazı yaygın API fonksiyonlarının listesi aşağıdadır:

API Açıklama
açısal. lowercase() küçük harfe bir dize dönüştürür
açısal. uppercase() büyük harfe bir dize dönüştürür
açısal. isString() Başvuru bir dize ise doğru döndürür
açısal. isNumber() Referans bir sayı ise true döndürür

açısal. lowercase()

Örnek

<div ng-app="myApp" ng-controller="myCtrl">
<p>{{ x1 }}</p>
<p>{{ x2 }}</p>
</div>

<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.x1 = "JOHN";
$scope.x2 = angular.lowercase($scope.x1);
});
</script>
Kendin dene "

açısal. uppercase()

Örnek

<div ng-app="myApp" ng-controller="myCtrl">
<p>{{ x1 }}</p>
<p>{{ x2 }}</p>
</div>

<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.x1 = "John";
$scope.x2 = angular.uppercase($scope.x1);
});
</script>
Kendin dene "

açısal. isString()

Örnek

<div ng-app="myApp" ng-controller="myCtrl">
<p>{{ x1 }}</p>
<p>{{ x2 }}</p>
</div>

<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.x1 = "JOHN";
$scope.x2 = angular.isString($scope.x1);
});
</script>
Kendin dene "

açısal. isNumber()

Örnek

<div ng-app="myApp" ng-controller="myCtrl">
<p>{{ x1 }}</p>
<p>{{ x2 }}</p>
</div>

<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.x1 = "JOHN";
$scope.x2 = angular.isNumber($scope.x1);
});
</script>
Kendin dene "