我刚刚开始使用Angular 1.5组件并拥有以下代码片段
angular.module('vizzle').component('teacher', {
bindings: {},
/* @ngInject */
templateUrl: '/app/components/teacher/teacher.component.html',
/* @ngInject */
controller: function($state, $timeout, UserProfileService, TeacherService){
//controller code in here
}
});
当我使用gulp服务在本地计算机上运行我的应用程序时,它是从.tmp / serve提供的,一切正常。然而,当我吞下build并然后gulp serve:dist时,它无法解析templateUrl,说它无法找到它。我使用了完全相同的代码,但使用了指令,它工作正常。任何想法如何让templateUrl使用Angular 1.5组件?