使用 AngularJS 的路由和模板实现单页应用 (Single Page)

目录结构

index.html

 

script.js

 

<!-- home.html -->

<div class="jumbotron text-center">

   <h1>Home Page</h1>

   <p>{{ message }}</p>

</div>

 

<!-- about.html -->

<div class="jumbotron text-center">

   <h1>About Page</h1>

  <p>{{ message }}</p>

</div>

 

<!-- contact.html -->

<div class="jumbotron text-center">

   <h1>Contact Page</h1>

   <p>{{ message }}</p>

</div>

 

原文来自https://scotch.io/tutorials/single-page-apps-with-angularjs-routing-and-templating

posted @ 2016-04-05 10:19  痕迹_mark  阅读(241)  评论(0)    收藏  举报