專案基於 AngularJs 1.5.8
版本開發。
在使用 component()
時遇到問題:組件沒有執行。
我的程式碼如下:
define(['angular','app'],function (angular,app) {
var departmentSelector = {
bindings: {
option: '='
},
templateUrl: 'dist/component/department-selector/index.html',
controller: DepartmentSelectorController,
controllerAs: 'vm'
};
app.component('departmentSelector', departmentSelector);
DepartmentSelectorController.$inject = ['$filter'];
function DepartmentSelectorController($filter) {
console.log("执行 组件 departmentSelector 成功");
}
});