我正在尝试使用angular js路由,基本URL'/'正在工作,因为家庭模板已加载,但没有其他模板在工作,例如'/ Paul'?

问题描述

这是我的app.js代码,基本URL'/'在加载主模板时工作正常,但是当我尝试导航到/ Paul或/ Adrian时,出现“找不到对象”错误。我已经检查了所有具有确切名称的模板在homes.html

模板文件夹中是否可用
app.config(function ($routeProvider,$locationProvider) {
$routeProvider
.when('/',{templateUrl: 'myneew/templates/home.html'})
.when('/Adrian',{templateUrl:'myneew/templates/Adrian.html'})
.when('/Stephen',{templateUrl:'myneew/templates/Stephen.html'})
.when('/JohnKhoo',{templateUrl:'myneew/templates/JohnKhoo.html'})
.when('/Paul',{templateUrl:'myneew/templates/Paul.html'})
.when('/MartinHowley',{templateUrl:'myneew/templates/MartinHowley.html'})
.when('/NoeleneTurton',{templateUrl:'myneew/templates/NoeleneTurton.html'})
.otherwise({templateUrl:'myneew/templates/home.html'});
$locationProvider.html5Mode(true);
});

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...