[AngularJS] Introduction to ui-router

Introduce to basic $stateProvider.state() with $stateParams services. Understand how nested router works.

 

Key Value:

ng-href="#/list/{{item.name}}"
.state('list.item', {
                url: '/:item',
                templateUrl: 'templates/list.item.tmpl.html',
                controller: 'ItemCtrl',
                controllerAs: 'item'
            })
ui-sref="list.item({item: item.name})"

the same as 

ui-sref=".item({item: item.name})" <!-- ui.route understand to find the parent router-->

 

 

Note: we can put template into a spreated html, here we just put inside index.html and use type to define it.

script type="text/ng-template"

复制代码
<!DOCTYPE html>
<html ng-app="app">
<head>

    <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css"/>

    <script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
    <script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.11/angular-ui-router.js"></script>
    <meta charset="utf-8">
    <title>JS Bin</title>
</head>
<body>
<div class="container">
    <h4>
        A brief introduction to <strong class="text-danger">ui-router</strong>
        <span class="text-muted">(v0.2.0)</span>
    </h4>

    <div>
        <ul class="nav nav-pills">
            <li><a ui-sref="home">Home</a></li>
            <li><a ui-sref="list">Shopping List</a></li>
        </ul>
    </div>
    <div ui-view></div>
</div>

<script type="text/ng-template" id="templates/home.tmpl.html">
    <div class="row">
        <h3>What is ui-router?</h3>

        <p>URL routing is a popular approach to matching the contents of a URL to specific functionality within a web
            application. URL routes programmatically present specific content to users based on the URL that they are
            visiting. It is a popular approach that has proven to be very effective.</p>

        <P>Something that might not be obvious is that URL routing is also a finite state machine. When you configure
            the routing for an app, you are laying out the various states the application can be in, and informing the
            application what to display and do when a specific route is encountered.</P>

        <p>AngularJS supplies URL routing by default. It is adequate, but also has some limitations.</p>
    </div>
</script>

<script type="text/ng-template" id="templates/list.tmpl.html">
    <div class="row padded">
        <div class="list-group col-xs-3">
            <a class="list-group-item"
               ng-repeat="item in list.shoppingList"
               ng-class="{active: item.selected}"
               ng-href="#/list/{{item.name}}"
               ng-click="list.selectItem(item)">{{item.name}}</a>
        </div>
        <div ui-view class="col-xs-9"></div>
    </div>
</script>

<script type="text/ng-template" id="templates/list.item.tmpl.html">
    <h3>{{item.item}}</h3>
    <img ng-src="//robohash.org/{{item.item}}.png"/>
</script>

<script src="app.js"></script>
</body>
</html>
复制代码

"ui-view" is important to tell where ui-router should show the view.

 

复制代码
/**
 * Created by Answer1215 on 12/16/2014.
 */
angular.module('app', ['ui.router'])
    .config(function($stateProvider, $urlRouterProvider) {
        $stateProvider
            .state('home', {
                url: '/home',
                templateUrl: 'templates/home.tmpl.html'
            })
            .state('list', {
                url: '/list',
                templateUrl: 'templates/list.tmpl.html',
                controller: 'ListCtrl',
                controllerAs: 'list'
            })
            //nested router: "list.item",
            // ui-router understands that item is under list parent.
            .state('list.item', {
                url: '/:item',
                templateUrl: 'templates/list.item.tmpl.html',
                controller: 'ItemCtrl',
                controllerAs: 'item'
            })
    })

    .controller('ListCtrl', ListCtrl)

    .controller('ItemCtrl', ItemCtrl)

function ItemCtrl($stateParams) {

    var ItemCtrl = this;
    ItemCtrl.item = $stateParams.item;
}

function ListCtrl() {

    var ListCtrl = this;
    ListCtrl.shoppingList = [
        {name: 'Milk'},
        {name: 'Eggs'},
        {name: 'Bread'},
        {name: 'Cheese'},
        {name: 'Ham'}
    ];

    ListCtrl.selectItem = function(selectedItem) {
        _(ListCtrl.shoppingList).each(function(item) {
            item.selected = false;
            if(selectedItem === item) {
                selectedItem.selected = true;
            }
        });
    };
}
复制代码

 

Read More: https://egghead.io/lessons/angularjs-introduction-ui-router

posted @   Zhentiw  阅读(420)  评论(0编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
点击右上角即可分享
微信分享提示