rev087/ng-inspector

"Controller-As" syntax has different results from older syntax

Open

#130 aperta il 11 ago 2015

Vedi su GitHub
 (0 commenti) (0 reazioni) (0 assegnatari)JavaScript (100 fork)batch import
bughelp wanted

Metriche repository

Star
 (787 star)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

Older Syntax:

angular.module('TestApp', [])
.controller('SampleCtrl', function($scope) {
    $scope.username = 'John Doe';
});

Result: Imgur


"Controller-As" syntax:

angular.module('TestApp', [])
.controller('SampleCtrl', function() {
    this.username = 'John Doe';
});

Result: Imgur

Guida contributor