“AngularJS - Controlleras” Code-Antworten

AngularJS - Controlleras

angular.module('myApp', [])
.config(function ($stateProvider) {
  $stateProvider
  .state('main', {
    url: '/',
    controller: 'MainController as MC',
    templateUrl: '/path/to/template.html'
  })
}).
controller('MainController', function () { … });
Tender Teira

AngularJS - Controlleras

<div ng-controller="MainController as MC">
   …
</div>
Tender Teira

Ähnliche Antworten wie “AngularJS - Controlleras”

Fragen ähnlich wie “AngularJS - Controlleras”

Weitere verwandte Antworten zu “AngularJS - Controlleras” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen