suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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 Tage vor460

Antworte allen(1)Ich werde antworten

  • 阿神

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

    我也遇到了同样的问题,不知道你解决了没有。一开始第一次请求以后是执行的,但是在刷新之后,component失败了,没有展现视图

    Antwort
    0
  • StornierenAntwort