angle1.5コンポーネントからtest.service.js
を初期化しようとしていますが、実際にその方法を知りません。私は角度成分のために、この構造を使用しています、testService
を防ぐため角度1.5コンポーネントにサービスを注入
....
controller: function(testService) {
var mvm = this;
}
};
が縮小プラグインによって難読化取得インジェクターサービスに知らせる:
var testComponent = {
templateUrl: "app/components/test.component.html",
controllerAs: "mvm",
bindings:{
bindingInput: "=",
},
controller: function(){
var mvm = this;
}
};
angular.module('myApp').component('testComponent', testComponent);
はい.... – mcmwhfy