angularJS的router用法簡單介紹
本章節將分享一段關於angular的router程式碼例項,有需的朋友可以做一下參考。
下面就分別把相關程式碼列舉出來:
一.index.html程式碼:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> </head> <body ng-app="routeApp" class="ng-app:routeApp" id="routeApp"> <script src="http://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2pre/html5shiv.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/json2/20121008/json2.js"></script> <div ng-view></div> <script src="http://localhost:81/js/angular.min.js"></script> <script> var routeApp = angular.module('routeApp',[]); routeApp.config(['$routeProvider',function ($routeProvider) { $routeProvider .when('/list', { templateUrl: 'list.html', controller: 'RouteListCtl' }) .when('/list/:id', { templateUrl: 'detail.html', controller: 'RouteDetailCtl' }) .otherwise({ redirectTo: '/list' }); }]); //controller routeApp.controller('RouteListCtl',function($scope) { }); routeApp.controller('RouteDetailCtl',function($scope, $routeParams) { $scope.id = $routeParams.id; }); </script> </body> </html>
二list.html相關:
執行下面程式碼:
[HTML] 純文字檢視 複製程式碼<hr/> <h3>Route : List.html</h3> <ul> <li ng-repeat="id in [1, 2, 3 ]"><a href="#/list/{{ id }}"> ID{{ id }}</a></li> </ul>
三.detail.html相關:
執行以下程式碼:
[HTML] 純文字檢視 複製程式碼<hr/> <h3>Route <span style="color: red;">{{id}}</span>: detail.html </h3>
相關文章
- js迴圈中reduce的用法簡單介紹JS
- 簡單介紹SQLserver中的declare變數用法SQLServer變數
- 簡單介紹Python中異常處理用法Python
- AOP的簡單介紹
- Webpack 的簡單介紹Web
- form表單的簡單介紹ORM
- Flownet 介紹 及光流的簡單介紹
- Map簡單介紹
- SVG簡單介紹SVG
- Clickjacking簡單介紹
- 【Pandas】簡單介紹
- ActiveMQ簡單介紹MQ
- JSON簡單介紹JSON
- RPC簡單介紹RPC
- Python簡單介紹Python
- KVM簡單介紹
- RMI簡單介紹
- HTML簡單介紹HTML
- HTML 簡單介紹HTML
- JavaScript 簡單介紹JavaScript
- CSS 簡單介紹CSS
- ajax簡單介紹
- 函子的簡單介紹
- 簡單介紹克隆 JavaScriptJavaScript
- 禪道簡單介紹
- Apache Curator簡單介紹Apache
- spark簡單介紹(一)Spark
- Flutter key簡單介紹Flutter
- Ansible(1)- 簡單介紹
- Git_簡單介紹Git
- jQuery Validate簡單介紹jQuery
- JSON物件簡單介紹JSON物件
- <svg>元素簡單介紹SVG
- 簡單介紹 ldd 命令
- 簡單介紹Rust中的workspaceRust
- Caffeine快取的簡單介紹快取
- java註解的簡單介紹Java
- 第64篇 Kubernetes的簡單介紹
- 第68篇 jwt的簡單介紹JWT