使用 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

浙公网安备 33010602011771号