1
anglejs 1.5コンポーネントでcontrollerAs
構文を使用しようとしています。ここ 角度1.5のコンポーネントでControllerAsを使用
controllerAs
すべてが正常に動作せずplunker
https://plnkr.co/edit/mTa1bvoNi1Qew9l1xAFS?p=preview
です。
(function() {
angular.module("myApp", [])
.component("helloWorld", {
template: "Hello {{$ctrl.name}}, I'm {{$ctrl.myName}}!",
bindings: {
name: '@'
},
controller: helloWorldController
})
function helloWorldController() {
/* jshint validthis: true */
var vm = this;
vm.myName = 'Alain'
}
})();
しかしcontrollerAs
に変化していないと私はもはやバインディングを取得しよう。
(function() {
angular.module("myApp", [])
.component("helloWorld", {
template: "Hello {{vm.name}}, I'm {{vm.myName}}!",
bindings: {
name: '@'
},
controller: ('helloWorldController', helloWorldController)
})
function helloWorldController() {
/* jshint validthis: true */
var vm = this;
vm.myName = 'Alain'
}
})();