찾다

 >  Q&A  >  본문

angular.js - AngularJs Component() 没有执行

项目基于 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 成功");
    }
});
天蓬老师天蓬老师2744일 전461

모든 응답(1)나는 대답할 것이다

  • 阿神

    阿神2017-05-15 17:13:23

    저도 같은 문제를 겪었는데, 해결하셨는지 모르겠네요. 처음에는 첫 번째 요청이 실행되었으나 새로고침 후 구성요소가 실패하여 뷰가 표시되지 않았습니다

    회신하다
    0
  • 취소회신하다