我有一个带有 angularjs + gae (Java) 的应用程序。在我的 index.html 中,我有一个 UI 视图。当我显示 index.html 的源代码时,没关系:
<html>
<head> //some contents </head>
<body>
<div ui-view></div>
</body>
</html>
但是当我转到其他页面时,它显示相同的代码。
如何显示其他页面代码?
例如: http: //mysite.appspot.com/about
<html>
<head> //some contents </head>
<body>
<div> //about html code </div>
</body>
</html>