我使用angular-fullstack生成器来开发我的项目。当我尝试使用命令创建新路由时(我已经安装了uiRouter):
yo angular-fullstack:route search
所有文件都已成功创建。但每当我尝试打开该路线时,我都会被重定向回主页。配置是自动生成的:
search.js
'use strict';
angular.module('tachologyApp')
.config(function ($stateProvider) {
$stateProvider
.state('search', {
url: '/search',
template: '<search></search>'
});
});
search.controller.js
'use strict';
(function(){
class SearchComponent {
constructor() {
this.message = 'Hello';
}
}
angular.module('tachologyApp')
.component('search', {
templateUrl: 'app/search/search.html',
controller: SearchComponent,
controllerAs: 'searchCtrl'
});
})();
任何帮助将不胜感激。
答案 0 :(得分:3)
确保手动将新组件导入到客户端/ app /文件夹内的app.js文件中。像这样:
import main from './{your_component}/{your_component}.component';