我正在尝试使用模块形式使用角度js显示视图。请你告诉我为什么它不显示我的视图或页面 我在这个链接上分享我的代码 http://goo.gl/ocBdQ5
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/foundation.css" />
<script src="lib/angular.js" type="text/javascript"></script>
<script src="lib/angular-ui-router.js" type="text/javascript"></script>
<script src="js/firtdir/module.js" type="text/javascript"></script>
<script src="js/firtdir/router.js" type="text/javascript"></script>
<script src="js/firtdir/controller/firstcontroller.js" type="text/javascript"></script>
<script src="js/app.js" type="text/javascript"></script>
</head>
<body >
<div ng-app="firstApp">
<div ui-view="app"></div>
</div>
</body>
</html>
答案 0 :(得分:2)
我已修复了以下问题,现在您的样本正在运行。
index.html&gt;&gt;目录名称更正为&#34; firstdir&#34;在网址
路线&gt;&gt;控制器应该在内部视图中如下
$stateProvider.state('app', {
url: '/app',
views:{
app:
{
templateUrl: 'js/firstdir/templates/firstpage.html',
controller:"firstcont"
}
}
});