検索

ホームページ  >  に質問  >  本文

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日前462

全員に返信(1)返信します

  • 阿神

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

    私も同じ問題に遭遇しましたが、解決したかどうかはわかりません。最初は最初のリクエストが実行されましたが、更新後にコンポーネントが失敗し、ビューが表示されませんでした

    返事
    0
  • キャンセル返事